PIN Checker
The Kenya Pin Checker endpoint is used to verify and validate Personal Identification Numbers (PINs) issued by the Kenya Revenue Authority (KRA) to individuals and businesses for taxation purposes. The endpoint is a valuable tool for businesses, financial institutions, and government agencies because it enables them to verify PINs, ensuring compliance and enhancing efficiency easily.
TEST DATA
number: A123456789B
POST
{{URL}}/identitypass/verification/ke/tax/pin
Request Header
Key | Description |
---|---|
x-api-key | Your Secret Key |
app-id | Your app id |
Request Body
Key | Description |
---|---|
number | PIN number |
Sample Response
{
"status": true,
"response_code": "00",
"data": {
"pin": "A123456789B",
"taxpayer_name": "ABB APP Limited",
"pin_status": "Active",
"itax_status": "iPage Updated",
"obligation_details": "Income Tax - Company Registered 29/01/2013"
}
}
Response Description
Response | Description |
---|---|
status | Indicates that the request was successful. |
response_code | Represents the response code. |
data | It is a string that contains some encrypted or encoded data related to the verification. |
pin | The PIN (Personal Identification Number) of the taxpayer. |
taxpayer_name | The name of the taxpayer associated with the PIN. |
status | The status of the PIN, which could be "Active" or "Inactive". |
itax_status | The status of iTax, which indicates if the taxpayer's information has been updated on the iTax system. |
obligation_details | Details about the taxpayer's obligation, such as tax type and registration date. |
Updated over 1 year ago