Back to all APIs
Participants Directory
PopularDirectory of UAE Licensed Financial Institutions under the CBUAE Open Finance Framework with phase, status, and product filtering
Category: Open FinanceEndpoint:
/v1/openfinance/participantsAvg Response
<50ms
Uptime SLA
99.99%
Free Tier
1,000/mo
Quick Start
JavaScript / TypeScript
javascript
import { KhaleejiAPI } from '@khaleejiapi/sdk'; const client = new KhaleejiAPI('your_api_key'); // List all Phase 1 banksconst result = await client.request('/v1/openfinance/participants', { type: 'bank', phase: 1, status: 'active',}); console.log(result.participants.length); // 8 Phase 1 banksconsole.log(result.summary.byPhase);// { "1": 11, "2": 5, "3": 2 }Python
python
from khaleejiapi import KhaleejiAPI client = KhaleejiAPI('your_api_key') # Search by SWIFT coderesult = client.request('/v1/openfinance/participants', { 'swift': 'NBADAEAA',}) participant = result['participants'][0]print(f"{participant['name']} — Phase {participant['openFinance']['phase']}")# "First Abu Dhabi Bank — Phase 1"cURL
curl
curl -X GET "https://khaleejiapi.dev/api/v1/openfinance/participants?type=bank&phase=1" \ -H "x-api-key: your_api_key"Related APIs
Consent Validator
Validate consent objects against CBUAE Article 22 — purpose specificity, time bounds, data privacy, and withdrawal requirements
Payment Validator
Validate payment initiation requests against CBUAE Open Finance and ISO 20022 standards with IBAN, amount, and routing checks
Standards Reference
CBUAE Open Finance standards, compliance deadlines, release roadmap, and technical specifications for building compliant integrations