Peleza — Trust built on data
🇰🇪 KYC
On this page

Phone Number

Verify that a Kenyan phone number is linked to a given national ID. Accepts 07… / 01… or +254 formats.

Request

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

Body Parameters

ParameterTypeDescriptionRequired
phone_numberstringMSISDN (07…, 01…, or +254…)required
national_idstringNational ID expected to be linked to the phonerequired
customer_numberstringOptional reference for your own tracking (max 255 characters)optional

Response

200 OKSample dataExample response
{
  "success": true,
  "response_code": 200,
  "message": "Phone number verified successfully",
  "data": {
    "phone_number": "0712845631",
    "national_id": "1028845317",
    "linked": true,
    "carrier": "Safaricom"
  },
  "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.