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.
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.jsonCopy a starting point:
curl -s https://getdaleelak.com/api/feed.jsonconst 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"]);{
"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 }
}
]
}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.
A more powerful, feature-rich tier is on the way. It is not available yet, and it will be announced right here.
Yes. The feed is free to use, with no key and no sign-up. A paid tier with higher limits is planned.
No. It is one open GET request, and CORS is open, so you can call it straight from the browser.
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.
Currencies like the US dollar and euro, plus gold, priced across licensed banks and dealers in Egypt. No black-market rates.
Up to 240 requests per minute on the free tier. Every response returns your remaining budget in the RateLimit headers.
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.
It refreshes through the day, and each day's close is recorded as history.