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

# Rechercher des numéros disponibles

> Rechercher des numéros de téléphone disponibles dans l'inventaire de Twilio

## Requête

```bash theme={null}
curl "https://app.orova.ai/api/phone-numbers/search?country=US&areaCode=212" \
  -H "x-api-key: YOUR_API_KEY"
```

## Paramètres de requête

| Paramètre  | Type   | Description                   |
| ---------- | ------ | ----------------------------- |
| `country`  | string | Code pays (ex. `US`, `GB`)    |
| `areaCode` | string | Filtre par indicatif régional |

## Réponse

```json theme={null}
{
  "numbers": [
    {
      "phoneNumber": "+12125551234",
      "friendlyName": "(212) 555-1234",
      "locality": "New York",
      "region": "NY"
    }
  ]
}
```
