API Documentation
Tax Identification Number (TIN) Verification
Verify business entities and individuals via their Tax Identification Number.
Endpoint
POST
/tin
Headers
| Header | Value | Required |
|---|---|---|
Authorization |
Bearer YOUR_API_TOKEN |
Required |
Parameters
| Parameter | Type | Description | Required |
|---|---|---|---|
tin |
string |
The Tax Identification Number or CAC Registration Number. | Required |
Example Request
cURL
curl -X POST "https://arewasmart.com.ng/api/tin" \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Accept: application/json" \
-d "tin=12345678-0001"
Example Response
JSON
{
"status": true,
"message": "TIN Verified",
"data": {
"taxpayer_name": "Arewa Smart Idea",
"taxpayer_type": "Corporate",
"tax_office": "Lagos"
}
}