Catalog/data-places-country-by-calling-code

Data

Country from dialing code API

Resolve a telephone calling/dialing code (e.g. +33, 44, 1264) to the matching country/countries, correctly disambiguating shared roots like +1 by suffix. Answers 'what country is +44', 'whose phone code is 1264', 'reverse the international dialing prefix'.

Price$0.01per request
MethodPOST
Route/v1/data/places-country-by-calling-code
StatusLive
MIME typeapplication/json
Rate limit60/minute
Cache86400s public
dataplacescountrycalling-codedialing-codephoneiddrest-countries
API URLhttps://x402.hexl.dev/v1/data/places-country-by-calling-code
Integration docs
Example request
{
  "code": "+33"
}
Example response
{
  "query": "+33",
  "countryCount": 1,
  "countries": [
    {
      "name": "France",
      "officialName": "French Republic",
      "code": "FR",
      "code3": "FRA",
      "capital": "Paris",
      "region": "Europe",
      "subregion": null,
      "population": 66351959,
      "flag": null,
      "callingCode": "+33",
      "dialRoot": "+3"
    }
  ]
}
Input schema
{
  "type": "object",
  "required": [
    "code"
  ],
  "properties": {
    "code": {
      "type": "string"
    }
  }
}
Output schema
{
  "type": "object",
  "additionalProperties": true
}