Open Finance

Participants Directory API

Directory of UAE Licensed Financial Institutions under the CBUAE Open Finance Framework. Query participants by phase, status, type, or SWIFT code with enriched product data.

Endpoint:/api/v1/openfinance/participants
Method:GET
Tier:All Plans

Try it out

GET/api/v1/openfinance/participants

Parameters

Code

curl
curl -X GET "https://khaleejiapi.dev/api/v1/openfinance/participants" \
-H "Authorization: Bearer your_api_key"

Parameters

ParameterTypeRequiredDescription
idstringOptionalSingle participant lookup by ID
typestringOptionalFilter by type: bank, insurance, payment_provider, exchange_house, finance_company, svf
statusstringOptionalFilter by status: active, onboarding, planned
phasestringOptionalFilter by Open Finance phase: 1, 2, or 3
searchstringOptionalSearch by institution name (case-insensitive)
swiftstringOptionalLookup by SWIFT/BIC code
countrystringOptionalFilter by country (default: all)

Response Fields

participants[]

Array of participant objects with id, name, nameAr, type, status, phase, SWIFT code, products, and certified endpoints count

summary

Aggregate statistics: total count, certified endpoints, breakdowns by type, status, and phase

regulation

CBUAE regulation metadata including name, authority, and effective date

Rate Limits

PlanRequests/MonthRate Limit
Free1,00010 req/min
Starter10,00060 req/min
Professional100,000300 req/min
Business500,0001,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.