ETF Prices by Finmap.io avatar
ETF Prices by Finmap.io

Pricing

Pay per event

Go to Apify Store
ETF Prices by Finmap.io

ETF Prices by Finmap.io

Developed by

finmap.io

finmap.io

Maintained by Community

Generates the accurate current price and historical prices of ETFs, 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

1

1

Last modified

6 days ago

ETF Price API by Finmap.io 📈

Retrieve the current and historical price data of ETFs, 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. Further discount for members applies.


Features

🕒 Fetch current ETF price.

📅 Fetch historical ETF price data by date range.

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

🌎 Find ETFs from 62+ countries.

🧾 Clean output with structured fields.

⬇️ Export as CSV or preferred file format.

💬 24h customer support for all subscribers.

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


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
exchangestringChoose between "I Don't Know"
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

{
"exchange": "None",
"order": false,
"price_type": "latest",
"symbols": [
"SPY",
"QQQ",
"TLT"
]
}

Output Schema

[
{
"symbol": "SPY",
"open": 661.47,
"close": 660,
"high": 661.78,
"low": 659.21,
"volume": 61168953,
"datetime": "2025-09-17 06:41:40+00:00"
},
{
"symbol": "QQQ",
"open": 592.61,
"close": 591.18,
"high": 592.86,
"low": 590.49,
"volume": 36942130,
"datetime": "2025-09-17 06:41:39+00:00"
},
{
"symbol": "TLT",
"open": 90.09,
"close": 90.35,
"high": 90.495,
"low": 90.04,
"volume": 26794226,
"datetime": "2025-09-17 06:41:39+00:00"
}
]

Example Historical Price

Input Schema

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

Output Schema

[
{
"symbol": "SPY",
"open": 589.39,
"close": 584.64,
"high": 591.13,
"low": 580.5,
"volume": 50203975,
"datetime": "2025-01-02"
},
{
"symbol": "SPY",
"open": 592.67,
"close": 597.77,
"high": 600.29,
"low": 590.49,
"volume": 65857248,
"datetime": "2025-02-03"
},
{
"symbol": "SPY",
"open": 596.18,
"close": 583.77,
"high": 597.34,
"low": 579.9,
"volume": 74249199,
"datetime": "2025-03-03"
},
{
"symbol": "SPY",
"open": 557.45,
"close": 560.97,
"high": 562.94,
"low": 553.68,
"volume": 54609641,
"datetime": "2025-04-01"
}
]