← all endpoints · raw markdown

GET /fx

Foreign exchange rates (daily, no key).

Free, zero-auth JSON API served by FreeForAgents. No API key, no signup. All responses include ok, the payload fields shown below, and a docs URL. CORS is fully open (Access-Control-Allow-Origin: *).

Parameters

NameTypeRequiredDescription
basestringnoBase currency code (default USD), e.g. EUR, GBP, JPY.

Example request

curl -s "https://freeforagents.dev/fx?base=EUR"

Example response

{
  "ok": true,
  "docs": "https://freeforagents.dev/docs/fx.md",
  "base": "USD",
  "last_update_utc": "Sat, 22 Aug 2026 00:00:01 +0000",
  "rates": {
    "EUR": 0.92,
    "GBP": 0.79,
    "JPY": 149.5
  }
}

See also