Machine-readable data from CBSL, DCS, SLTDA and Pettah markets. Exchange rates, food prices, T-bill yields, foreign reserves — structured, updated daily, and API-ready.
Sourced from official government and central bank publications. Structured, normalised, and ready for analysis or automation.
RESTful JSON. No SDK required. Works with curl, Python, R, JavaScript — anywhere you can make an HTTP request. API key in one header.
# Weekly chicken price history with YoY signals curl "https://macro.coexinbrand.com/api/v1/market/dcs\ ?item=Chicken+-+Fresh&limit=4" \ -H "X-API-Key: mk_your_key_here" # Returns [ { "date": "2026-06-16", "item": "Chicken - Fresh", "unit": "1Kg.", "avg_price": 1375.00, "pct_change_yoy": 19.0, "pct_change_wow": 0.8 } // ... ]