Standards Reference API
CBUAE Open Finance standards, compliance deadlines, release roadmap, and technical specifications for building compliant financial integrations in the UAE.
/api/v1/openfinance/standardsTry it out
/api/v1/openfinance/standardsParameters
Code
curl -X GET "https://khaleejiapi.dev/api/v1/openfinance/standards" \ -H "Authorization: Bearer your_api_key"Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| section | string | Optional | Filter by section: roadmap, standards, compliance, products, articles (default: all) |
| phase | string | Optional | Filter by phase: 1, 2, or 3 |
| release | string | Optional | Filter by release: R1, R2, R3, R4, or R5 |
Response Fields
standards
Framework metadata: name, version, authority, messaging standard (ISO 20022), and API standard
roadmap[]
Release timeline (R1–R5) with phase, title, status, launch date, and products in scope
complianceDeadlines[]
Key compliance milestones with deadlines and applicable institution types
keyArticles[]
Important regulatory articles with summaries (e.g. Article 22 on Consent Requirements)
Rate Limits
| Plan | Requests/Month | Rate Limit |
|---|---|---|
| Free | 1,000 | 10 req/min |
| Starter | 10,000 | 60 req/min |
| Professional | 100,000 | 300 req/min |
| Business | 500,000 | 1,000 req/min |
Debugging & Support
Include X-Request-ID when contacting support
Every response from KhaleejiAPI includes an X-Request-ID header — a unique identifier that lets our support team pull the exact log entry for your request within seconds. Always share it when reporting an unexpected error or unexpected result.
How to capture it
JavaScript / fetch
const res = await fetch("https://khaleejiapi.dev/api/v1/...", {
headers: { Authorization: "******" },
});
const requestId = res.headers.get("x-request-id");
console.log("Request ID:", requestId);
// → e.g. "req_01j9xkz4vp8..."cURL
curl -si "https://khaleejiapi.dev/api/v1/..." \ -H "Authorization: ******" | grep -i x-request-id # → x-request-id: req_01j9xkz4vp8...
Browser DevTools
Open DevTools (F12) → Network tab → click the failing request → scroll to the Response Headers section → copy the value next to x-request-id.
For a full list of error codes and guidance on common issues, see the Troubleshooting guide.