Bitcoin Price avatar
Bitcoin Price

Pricing

Pay per event

Go to Store
Bitcoin Price

Bitcoin Price

Developed by

finmap.io

finmap.io

Maintained by Community

Generates the accurate current or historical Bitcoin (BTC) price data for any timeframe. Intervals: Daily, weekly, and monthly. Currencies supported: USD, EUR, and GBP. Contact us if you need more. We are committed to offering accurate financial data at a low cost.

5.0 (1)

Pricing

Pay per event

0

2

2

Last modified

13 hours ago

Bitcoin Price API by finmap.io 📈

This actor fetches the accurate current or historical Bitcoin (BTC) price data in preferred intervals. It's ideal for startups, developers, analysts, and AI Agents who need financial market data at affordable rates.

Terms of Service: This actor is designed to provide users with accurate and reliable 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.


Features

🕒 Fetch current Bitcoin (BTC) price.

📅 Fetch historical Bitcoin (BTC) price data by date range.

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

🔄 Supports major currencies: USD, EUR, GBP.

🧾 Clean output with structured fields.

⬇️ Export as CSV or preferred file format.

💸 Avoid overspending by only paying $0.0001/row of result.


Input Schema

FieldTypeRequiredDescription
price_typestringChoose between "latest" or "historical"
currencystringSupported values: USD, EUR, GBP
startDatestringRequired for historical pricing (YYYY-MM-DD)
endDatestringRequired for historical pricing (YYYY-MM-DD)
intervalstringOne of: daily, weekly, monthly (used only for historical)

Example Inputs

Current price (latest)

{
"price_type": "latest",
"currency": "USD"
}```
### Historical price (historical)
```json
{
"price_type": "historical",
"currency": "EUR",
"startDate": "2024-01-01",
"endDate": "2024-06-30",
"interval": "weekly"
}```
### Output Schema
```json
[
{
"id": 3724246,
"symbol": "BTCEUR",
"open": 90382,
"close": 91231,
"high": 91585,
"low": 90208,
"volume": 114.12100322,
"datetime": "2024-12-28"
},
{
"id": 3724216,
"symbol": "BTCEUR",
"open": 90839,
"close": 90597,
"high": 91585,
"low": 89750,
"volume": 370.1647492,
"datetime": "2024-11-28"
},
...
]```