> ## Documentation Index
> Fetch the complete documentation index at: https://docs.reeple.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Validate TV

> Confirm a cable TV account before payment

Check a cable TV account's validity and subscription status before paying.

## Endpoint

```
POST https://api-v3.reeple.ai/bill-payment/validate-tv
```

## Request body

| Field               | Type   | Description                                                                                           |
| ------------------- | ------ | ----------------------------------------------------------------------------------------------------- |
| `serviceCategoryId` | String | **Required.** The ID of the TV provider — see [TV services](/api-reference/bill-payment/tv-services). |
| `entityNumber`      | String | **Required.** The TV account (smartcard/IUC) number.                                                  |

```json theme={null}
{
  "serviceCategoryId": "string",
  "entityNumber": "string"
}
```

## Response

```json theme={null}
{
  "success": true,
  "statusCode": 200,
  "message": "TV validation successful",
  "data": {
    "status": "success",
    "name": "Owner's name",
    "customernumber": "string"
  }
}
```
