# `not_a_number`: the input does not look like a phone number

Even after stripping punctuation and vanity letters, what is left is not something a phone can dial: no digits, or characters no plan uses.

- Appears in: `reason`
- Billing: Free. Invalid numbers never cost a credit.

Spaw accepts any common notation: spaces, dashes, dots, brackets, a leading + or 00, tel: links and vanity letters (1-800-FLOWERS). A value that still yields no dialable digits is not a number at all: an email address, a name, placeholder text.

**What to do.** Reject the input and ask for the number again; nothing further can be learned from it.

```json
{
    "valid": false,
    "reason": "not_a_number",
    "e164": null,
    "country": null,
    "risk_score": null
}
```

Reference: https://spaw.co/docs/reasons/not_a_number
