← Finanzas y divisas

Detección de arbitraje

GET /arbitrage

Scan for triangular arbitrage opportunities across a set of divisas. Triangular arbitrage exploits pricing inconsistencies when convirtiendo through three divisas (e.g., USD->EUR->GBP->USD) yields more than the starting amount. Returns any detected opportunities with the currency path and profit percentage. Educational tool for understanding FX markets, and useful for fintech aplicaciones demonstrating market efficiency concepts.

Parametros

currencies opcional predeterminado: USD,EUR,GBP,JPY,CHF,CAD,AUD

Comma-separated currencies

Ejemplos de solicitudes

Uso basico
curl "https://nordapi.ee/api/v1/arbitrage?currencies=USD,EUR,GBP,JPY,NOK"
Scan major currencies for arbitrage
curl "https://nordapi.ee/api/v1/arbitrage?currencies=USD,EUR,GBP,JPY,NOK"
Scan with default currency set
curl "https://nordapi.ee/api/v1/arbitrage"
Scan Nordic and European currencies
curl "https://nordapi.ee/api/v1/arbitrage?currencies=NOK,SEK,DKK,EUR,CHF,GBP"

Respuesta en vivo

{
  "currencies_checked": [
    "USD",
    "EUR",
    "GBP",
    "JPY",
    "NOK"
  ],
  "date": "2026-04-05",
  "opportunities": [],
  "opportunities_found": 0,
  "success": true
}

Ejemplo de respuesta

{"success":true,"opportunities_found":0,"opportunities":[]}