Overview
1Forge provides real-time forex (foreign exchange) market data via a REST API, covering currency pairs, conversion rates, and market status. An API key is required; a free tier with limited requests per day is available. It is designed for developers building trading dashboards, currency converters, or financial applications that need live forex data.
Beginner Tip
Sign up at 1forge.com to get your API key. Start by calling the /quotes endpoint with a list of currency pairs such as EURUSD,GBPUSD to get bid and ask prices. All requests require ?api_key=YOUR_KEY.
Available Data
The kind of data this API exposes, based on its documentation. We could not call the endpoint to confirm the exact field names.
Example Response
Illustrative shape only — we were not able to call this endpoint (it requires credentials or exposes no public sample URL), so the fields below show the kind of data this API returns rather than a recorded response.
{
"base": "USD",
"date": "2025-01-15",
"rates": {
"EUR": 0.92,
"GBP": 0.79,
"JPY": 149.5,
"CAD": 1.35
}
} Field Reference
symbol The currency pair symbol such as EURUSD. bid The current bid price for the currency pair. ask The current ask price for the currency pair. price The mid-market price calculated as the average of bid and ask. timestamp Unix timestamp of when the quote was recorded. Implementation Example
Calls a real endpoint of this API. Replace any placeholder credentials with your own key.
const url = "https://1forge.com/forex-data-api/api-documentation";
// Replace headers or query params with the values required by this API.
const response = await fetch(url, {
headers: {
"X-API-Key": "YOUR_API_KEY"
}
});
if (!response.ok) throw new Error(`Request failed: ${response.status}`);
const data = await response.json();
console.log(data); What Can You Build?
Note: These code examples are AI-generated and unverified. Always refer to the official API documentation for accurate usage.
Common Errors & Troubleshooting
Generated guidance based on this API's documentation, not observed by us. Treat it as a starting point and check against the provider's own error reference.
Metadata Score Breakdown
Estimated from metadata — endpoint not independently tested
Metadata estimate · endpoint not independently tested
Technical Specifications
Related Tags
Alternatives to 1Forge
Technical alternatives for different use cases.
Broader currency coverage beyond forex pairs
Multi-currency conversion beyond forex majors
Real-time forex WebSocket streaming
Similar APIs
View All →Amdoren
Amdoren provides a free currency conversion API supporting over 150 currencies with daily updated exchange rates.
CurrencyFreaks
CurrencyFreaks provides current and historical currency exchange rates for 150+ currencies via a REST API.
Currencylayer
⭐ Beginner's PickCurrencylayer provides reliable exchange rate and currency conversion data for over 168 world currencies using an easy-to-use REST API.
CurrencyScoop
CurrencyScoop (now CurrencyBeacon) provides real-time and historical exchange rates for 170+ currencies and cryptocurrencies via a REST API.
ExchangeRate-API
⭐ Beginner's PickExchangeRate-API delivers accurate foreign exchange rates for 160+ currencies, sourced from major financial data providers and updated hourly.