Banking API Made Simple
Access BaridiKit banking features through a modern, developer-friendly API. Get account info, transactions, and transfers with simple REST calls.
# Get your account balance
curl -X GET "https://api.baridikit.com/v1/mobilebank/accounts" \
-H "X-API-Key: sk_your_api_key"
# Response
{
"accounts": [{
"id": 1,
"balance": 15000.00,
"rip": "00799999001234567890"
}]
}