NERKHنرخ — RATE ← nerkh.org

Nerkh API

Free JSON API for live Iranian Toman exchange rates — 28 currencies, refreshed every 5 minutes. No API key, no auth, CORS enabled. Built for humans, apps, and AI agents alike.

Basics

Live rates — all currencies

GET /api/v1/rates/all.json
{
  "status": "success",
  "timestamp": "2026-07-16T23:20:21Z",
  "currencies": [
    {
      "code": "USD",
      "name": "US Dollar",
      "buy_rate": 187900.0,
      "sell_rate": 188000.0,
      "last_updated": "2026-07-16T23:20:21"
    }
  ],
  "total_currencies": 28
}

Recent history — last 7 days

GET /api/v1/rates/recent.json
{
  "status": "success",
  "updated": "2026-07-16T23:20:21Z",
  "days": [
    { "date": "2026-07-12",
      "rates": { "USD": { "buy": 178800.0, "sell": 178900.0 } } }
  ]
}

Full daily history

GET /api/v1/rates/history.json

Same shape as recent.json, one entry per UTC day, ascending, from 2026-07-12 onward (no older data exists).

Per-currency timeframes

GET /api/v1/rates/history/{code}/{timeframe}.json
GET /api/v1/rates/history/usd/1d.json

{
  "status": "success",
  "code": "USD",
  "updated": "2026-07-16T23:20:21Z",
  "points": [
    { "t": "2026-07-16T22:00:00Z", "buy": 187900, "sell": 188000 }
  ]
}

Terms of use

For AI agents

A condensed, machine-readable overview of this site and API lives at nerkh.org/llms.txt. The live rates shown on the homepage are also server-rendered into the HTML, so non-JavaScript crawlers see current data.