Gold Price avatar
Gold Price

Pricing

Pay per event

Go to Apify Store
Gold Price

Gold Price

Developed by

finmap.io

finmap.io

Maintained by Community

Generates the accurate current or historical GOLD (XAU) 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.

0.0 (0)

Pricing

Pay per event

1

2

2

Last modified

2 days ago

Gold Price API by finmap.io πŸ“ˆ

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

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 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.

πŸ’Έ Avoid overspending by only paying $0.0001/row of result.


Input Schema

FieldTypeRequiredDescription
price_typestringβœ…Choose between "latest" or "historical"
currencystringβœ…Supported values: USD, EUR, GBP
startDatestring❌Required for historical pricing (YYYY-MM-DD)
endDatestring❌Required for historical pricing (YYYY-MM-DD)
intervalstring❌One 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"
},
...
]```