Crypto Prices by Finmap.io avatar
Crypto Prices by Finmap.io

Pricing

Pay per event

Go to Apify Store
Crypto Prices by Finmap.io

Crypto Prices by Finmap.io

Developed by

finmap.io

finmap.io

Maintained by Community

Generates the accurate current price and historical prices of cryptocurrency pairs, at a low cost. Historical intervals: Daily, weekly, and monthly. We are committed to offering accurate financial data straight from the robust finmap.io API. Contact us if you have any questions.

0.0 (0)

Pricing

Pay per event

2

2

2

Last modified

7 days ago

Crypto Price API by finmap.io 📈

Fetch the accurate current and historical price data of cryptocurrency pairs in preferred intervals. This actor is ideal for startups, developers, AI agents, and market analysts who need accurate asset prices on demand, at affordable rates. Pay only for what you need! Current rate is: $0.0005/row of results.


Features

🕒 Fetch current Crypto price.

📅 Fetch historical Crypto price data by date range.

⚙️ Select interval: daily, weekly, or monthly.

🔄 Supports all major crypto pairs: BTCUSDT, ETHUSDT, SOLBTC, etc.

🧾 Clean output with structured fields.

⬇️ Export as CSV or preferred file format.

💸 Avoid overspending by only paying $0.0005/row of the results.


Terms of Service

This actor is designed to provide users with accurate and reliable market data. However, the information and services provided by this tool are not intended as, and should not be construed as, financial or investment advice. We are not responsible for any investment decisions made based on the data provided, nor for any losses resulting from market fluctuations, errors, or inaccuracies in the data.


Input Schema

FieldTypeRequiredDescription
price_typestringChoose between "latest" or "historical"
symbolsarraySupported values: BTCUSDT, ETHUSDT
startDatestringRequired for historical pricing (YYYY-MM-DD)
endDatestringRequired for historical pricing (YYYY-MM-DD)
intervalstringOne of: daily, weekly, monthly (used only for historical)
orderbooleanSwitch: true or false (default) (used only for historical)

Example Latest Price

Input Schema

{
"order": false,
"price_type": "latest",
"symbols": [
"ETHUSDT",
"XRPUSDT",
"SOLBTC"
]
}

Output Schema

[
{
"symbol": "ETHUSDT",
"open": 4501.3,
"close": 4507.37,
"high": 4557.67,
"low": 4464,
"volume": 132551.5855,
"datetime": "2025-09-17 09:41:18+00:00"
},
{
"symbol": "SOLBTC",
"open": 0.0020286,
"close": 0.0020186,
"high": 0.0020326,
"low": 0.0020015,
"volume": 34798.145,
"datetime": "2025-09-17 09:41:19+00:00"
},
{
"symbol": "XRPUSDT",
"open": 3.0376,
"close": 3.0155,
"high": 3.0476,
"low": 3.0054,
"volume": 38003790.90000041,
"datetime": "2025-09-17 09:41:18+00:00"
}
]

Example Historical Price

Input Schema

{
"endDate": "2025-04-01",
"interval": "31",
"order": false,
"price_type": "historical",
"startDate": "2025-01-01",
"symbols": [
"ETHUSDT"
]
}

Output Schema

[
{
"symbol": "ETHUSDT",
"open": 3337.78,
"close": 3360.38,
"high": 3374.85,
"low": 3313.88,
"volume": 190238.5861,
"datetime": "2025-01-01"
},
{
"symbol": "ETHUSDT",
"open": 3300.99,
"close": 3117.54,
"high": 3331.98,
"low": 3101.7,
"volume": 354065.2525,
"datetime": "2025-02-01"
},
{
"symbol": "ETHUSDT",
"open": 2237.59,
"close": 2217.39,
"high": 2281.14,
"low": 2142.73,
"volume": 446430.7271,
"datetime": "2025-03-01"
},
{
"symbol": "ETHUSDT",
"open": 1822.43,
"close": 1904.98,
"high": 1927.9,
"low": 1817.88,
"volume": 452989.0974,
"datetime": "2025-04-01"
}
]