Passer au contenu principal
GET
/
api
/
phone-numbers
/
search
Rechercher des numéros disponibles
curl --request GET \
  --url https://api.example.com/api/phone-numbers/search

Requête

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ètreTypeDescription
countrystringCode pays (ex. US, GB)
areaCodestringFiltre par indicatif régional

Réponse

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