| Source | Enabled | Interval (h) | Last run | Next run | |
|---|---|---|---|---|---|
| Loading⦠| |||||
| Source | Type | Status | Started (UTC) | Duration | Rows | Error |
|---|---|---|---|---|---|---|
| Loading⦠| ||||||
All endpoints return JSON. Base URL: https://macro.coexinbrand.com
Liveness check
$ curl https://macro.coexinbrand.com/health
{"status":"healthy","service":"srilanka-macro-api","version":"1.0.0"}
Query daily LKR exchange rates
currency_code (string) β ISO 4217 code, e.g. USD, EURdate_from (date) β Start date (YYYY-MM-DD)date_to (date) β End date (YYYY-MM-DD)limit (int, 1β1000, default 100) β Page sizeoffset (int, default 0) β Pagination offset
$ curl "https://macro.coexinbrand.com/api/v1/macro/exchange-rates?currency_code=USD&date_from=2026-06-01&limit=2"
[
{
"date":"2026-05-29",
"currency_code":"USD",
"currency_name":"US Dollar",
"buying_rate":"324.4550",
"selling_rate":"334.2444",
"indicative_rate":"329.3497",
"is_imputed":false,
"source_url":"https://www.cbsl.gov.lk/..."
}
]
List all currencies with date coverage
$ curl https://macro.coexinbrand.com/api/v1/macro/currencies
[
{
"currency_code":"USD",
"currency_name":"US Dollar",
"earliest_date":"2005-01-03",
"latest_date":"2026-05-29",
"record_count":5382
}
]
Latest snapshot of all currencies and commodities (no parameters)
$ curl https://macro.coexinbrand.com/api/v1/macro/summary
{
"exchange_rates": {
"as_of":"2026-05-29",
"rates": [{"currency_code":"USD",...}]
},
"commodity_prices": {
"as_of":"2026-06-13",
"prices": [{"market_name":"Pettah",...}]
}
}
Query commodity market prices from CBSL price reports
item_name (string) β Partial match, e.g. "Tomato"market_name (string) β Partial match: "Pettah", "Dambulla", "Narahenpita"item_type (string) β Exact match: Rice, Vegetable, Fruit, Fish, Pulse, Spice, Otherdate_from, date_to, limit, offset β Same as exchange rates
$ curl "https://macro.coexinbrand.com/api/v1/market/prices?item_name=Rice&market_name=Pettah&limit=2"
[
{
"date":"2026-06-13",
"market_name":"Pettah",
"item_name":"Samba Rice",
"item_type":"Rice",
"unit":"Rs./kg",
"wholesale_price":"185.00",
"retail_price":"210.00",
"is_imputed":false
}
]
List all commodity items with type and date coverage
$ curl https://macro.coexinbrand.com/api/v1/market/items
[
{
"item_name":"Samba Rice",
"item_type":"Rice",
"earliest_date":"2023-01-05",
"latest_date":"2026-06-13",
"market_count":3
}
]