Peleza β€” Trust built on data
πŸ‡°πŸ‡ͺ KYC
On this page

Bank Account

Verify a Kenyan bank account and resolve the account holder name against the specified bank.

Request

POST/api/v1/bank-account
{{baseUrl}}/api/v1/bank-account
HeaderTypeDescription
AuthorizationstringBearer YOUR_ACCESS_TOKEN from the OAuth client-credentials flow
Content-Typestringapplication/json

Body Parameters

ParameterTypeDescriptionRequired
account_numberstringBank account numberrequired
bank_idstringBank identifier (e.g. Equity bank ID)required
customer_numberstringOptional reference for your own tracking (max 255 characters)optional

Response

200 OKSample dataExample response
{
  "success": true,
  "response_code": 200,
  "message": "Bank account verified successfully",
  "data": {
    "bank": { "id": "68", "name": "Equity Bank" },
    "account_number": "0123456789",
    "account_holder": { "name": "JAMES KAMAU" },
    "is_verified": true
  },
  "request_id": "550e8400-e29b-41d4-a716-446655440000"
}

Response Fields

FieldTypeDescription
successbooleanWhether the request succeeded
response_codenumberApplication response code (typically mirrors HTTP)
messagestringHuman-readable status message
dataobjectPayload for the verified resource
request_idstringUUID for support and audit trails

Set {{baseUrl}} to https://api.peleza.com (production) or https://sandbox.peleza.com (sandbox). Authenticated calls need a Bearer token from POST /api/v1/oauth/token.