Gold Price by Finmap.io avatar
Gold Price by Finmap.io

Pricing

Pay per event

Go to Apify Store
Gold Price by Finmap.io

Gold Price by Finmap.io

Developed by

finmap.io

finmap.io

Maintained by Community

Generates the accurate current and historical Gold Price data for any timeframe. Historical intervals: Daily, weekly, and monthly. Currencies supported: USD, EUR, and GBP. We are committed to offering accurate financial data straight from the robust finmap.io API.

5.0 (1)

Pricing

Pay per event

2

10

9

Last modified

2 days ago

Gold Price API by finmap.io 📈

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


Features

🕒 Fetch current Gold (XAU) price.

📅 Fetch historical Gold (XAU) 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.

💬 24h customer support for all subscribers.

💸 Avoid overspending by only paying $0.00035/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
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": "2011-09-01",
"endDate": "2024-06-30",
"interval": "daily"
}```
### Output Schema
```json
[
{
"id": 18080567,
"symbol": "XAUUSD",
"open": 1824.36,
"close": 1882.52,
"high": 1884.33,
"low": 1823.76,
"volume": 0.0,
"datetime": "2011-09-01T04:00:00.000"
},
{
"id": 18080568,
"symbol": "XAUUSD",
"open": 1901.67,
"close": 1874.7,
"high": 1920.6,
"low": 1858.38,
"volume": 0.0,
"datetime": "2011-09-05T04:00:00.000"
},
...
]```