Abstract API · Schema

PhoneCountry

PhoneCountry schema from Abstract API phone-intelligence

AvatarsCompany EnrichmentContactsCurrenciesEmail ValidationExchange RatesIBAN ValidationImage ProcessingIP GeolocationIP IntelligencePhone ValidationPublic HolidaysScreenshotsTimezonesVAT ValidationWeb Scraping

Properties

Name Type Description
code string ISO 3166-1 alpha-2 country code
name string Country name
prefix string International dialing prefix
View JSON Schema on GitHub

JSON Schema

phone-intelligence-phone-country-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/abstract-api/refs/heads/main/json-schema/phone-intelligence-phone-country-schema.json",
  "title": "PhoneCountry",
  "description": "PhoneCountry schema from Abstract API phone-intelligence",
  "type": "object",
  "properties": {
    "code": {
      "type": "string",
      "description": "ISO 3166-1 alpha-2 country code",
      "example": "US"
    },
    "name": {
      "type": "string",
      "description": "Country name",
      "example": "United States"
    },
    "prefix": {
      "type": "string",
      "description": "International dialing prefix",
      "example": "1"
    }
  }
}