# Whether this organization can buy a number right now

Source: https://docs.usetone.ai/reference/numbers/eligibility

> Answers before you try: whether business verification is complete and whether the wallet covers a purchase.

`GET /v1/numbers/eligibility`
Answers before you try: whether business verification is complete and whether the wallet covers a purchase. Cheaper than a `403` and easier to show in a UI.

Requires the `read` scope.

## Response

| Field | Type | | Meaning |
|---|---|---|---|
| `balancePaise` | integer | required | Current wallet balance. Compare it against an offer’s `totalPaise`. |
| `verified` | boolean | required | KYC and DLT registration are complete. |

### Example response

```json
{
  "data": {
    "balancePaise": 0,
    "verified": true
  }
}
```
