/v1/pairs
Supported FX pairs
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/fxmovers-api/v1/pairs" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/fxmovers-api/v1/pairs", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/fxmovers-api/v1/pairs");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/fxmovers-api/v1/pairs",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"note": "Supported FX pairs (majors and crosses). Pass any as pair= to /v1/pair.",
"count": 28,
"pairs": [
{
"base": "EUR",
"pair": "EURUSD",
"quote": "USD"
},
{
"base": "GBP",
"pair": "GBPUSD",
"quote": "USD"
},
{
"base": "USD",
"pair": "USDJPY",
"quote": "JPY"
},
{
"base": "USD",
"pair": "USDCHF",
"quote": "CHF"
},
{
"base": "AUD",
"pair": "AUDUSD",
"quote": "USD"
},
{
"base": "USD",
"pair": "USDCAD",
"quote": "CAD"
},
{
"base": "NZD",
"pair": "NZDUSD",
"quote": "USD"
},
{
"base": "EUR",
"pair": "EURGBP",
"quote": "GBP"
},
{
"base": "EUR",
"pair": "EURJPY",
"quote": "JPY"
},
{
"base": "GBP",
"pair": "GBPJPY",
"quote": "JPY"
},
{
"base": "EUR",
"pair": "EURCHF",
"quote": "CHF"
},
{
"base": "AUD",
"pair": "AUDJPY",
"quote": "JPY"
},
{
"base": "EUR",
"pair": "EURAUD",
"quote": "AUD"
},
{
"base": "GBP",
"pair": "GBPCHF",
"quote": "CHF"
},
{
"base": "CAD",
"pair": "CADJPY",
"quote": "JPY"
},
{
"base": "AUD",
"pair": "AUDNZD",
"quote": "NZD"
},
{
"base": "EUR",
"pair": "EURCAD",
"quote": "CAD"
},
{
"base": "NZD",
"pair": "NZDJPY",
"quote": "JPY"
},
{
"base": "CHF",
"pair": "CHFJPY",
"quote": "JPY"
},
{
"base": "GBP",
"pair": "GBPAUD",
"quote": "AUD"
},
{
"base": "USD",
"pair": "USDSEK",
"quote": "SEK"
},
{
"base": "USD",
"pair": "USDNOK",
"quote": "NOK"
},
{
"base": "USD",
"pair": "USDMXN",
"quote":
…