Daleelak
العربية
Daleelak

Daleelak API

The same data that powers this site, as clean JSON. One request gives you every asset, the best licensed seller for each direction, the day's verdict, the official and global rates, and daily history. It is language-neutral and source-free, so you present it your own way.

Endpoint

One GET request. No key and no sign-up. CORS is open, so you can call it straight from the browser.

GET https://getdaleelak.com/api/feed.json

Copy a starting point:

curl -s https://getdaleelak.com/api/feed.json
const res = await fetch("https://getdaleelak.com/api/feed.json");
const data = await res.json();
console.log(data.assets[0].directions.sell.best);
import requests

data = requests.get("https://getdaleelak.com/api/feed.json").json()
print(data["assets"][0]["directions"]["sell"]["best"])
<?php
$data = json_decode(file_get_contents("https://getdaleelak.com/api/feed.json"), true);
print_r($data["assets"][0]["directions"]["sell"]["best"]);

What you get

  • Every tracked asset (currencies and gold), with the best seller for buy and for sell.
  • The day's verdict and how today compares to recent history.
  • The official central bank rate and the global mid-market rate.
  • Daily history for each asset.

Sample response

{
  "schemaVersion": 1,
  "generatedAt": "2026-08-25T06:00:00Z",
  "assets": [
    {
      "id": "USD-EGP",
      "category": "currencies",
      "slug": "us-dollar",
      "unit": "EGP/USD",
      "decimals": 2,
      "directions": {
        "sell": {
          "verdict": "favorable",
          "favorability": 0.92,
          "priorDays": 90,
          "best": { "seller": "Arab International Bank", "value": 50.83 }
        }
      },
      "benchmark": { "buy": 50.81, "sell": 50.95 },
      "global": { "value": 50.88 }
    }
  ]
}

Limits

Up to 240 requests per minute on the free API. Every response tells you your remaining budget in the RateLimit headers. Please cache and reuse the data instead of polling in a tight loop.

Plans

FreeAvailable now
  • The full feed, all assets
  • A generous rate limit
  • No key and no sign-up
  • For information only
ProComing soon

A more powerful, feature-rich tier is on the way. It is not available yet, and it will be announced right here.

  • Higher limits and priority
  • Deeper history
  • Push updates by webhook
  • An uptime commitment and support
  • A commercial license

Common questions

Is the Daleelak API free?

Yes. The feed is free to use, with no key and no sign-up. A paid tier with higher limits is planned.

Do I need an API key or an account?

No. It is one open GET request, and CORS is open, so you can call it straight from the browser.

What does the API return?

Every tracked asset, the best licensed seller to buy and to sell, the day's verdict, the official and global rates, and daily history, all as JSON.

Which assets and sellers does it cover?

Currencies like the US dollar and euro, plus gold, priced across licensed banks and dealers in Egypt. No black-market rates.

What are the rate limits?

Up to 240 requests per minute on the free tier. Every response returns your remaining budget in the RateLimit headers.

Can I use it commercially?

The data is for information only, not financial advice. A link back to Daleelak is appreciated, and a commercial license is coming with the paid tier.

How often is the data updated?

It refreshes through the day, and each day's close is recorded as history.

Fair use

  • Please use the API instead of scraping the pages.
  • A link back to Daleelak is appreciated.
  • Rates are indicative and for information only, not financial advice.
Read the full terms