IPinfo · Schema

LiteResponse

LiteResponse schema from IPinfo API

IP IntelligenceIP GeolocationASNPrivacy DetectionVPN DetectionThreat IntelligenceNetwork DataMobile CarrierWHOISPublic APIsDevelopment

Properties

Name Type Description
ip string
asn string
as_name string
as_domain string
country_code string
country string
continent_code string
continent string
View JSON Schema on GitHub

JSON Schema

ipinfo-lite-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/ipinfo/main/json-schema/ipinfo-lite-response-schema.json",
  "title": "LiteResponse",
  "description": "LiteResponse schema from IPinfo API",
  "type": "object",
  "properties": {
    "ip": {
      "type": "string",
      "example": "8.8.8.8"
    },
    "asn": {
      "type": "string",
      "example": "AS15169"
    },
    "as_name": {
      "type": "string",
      "example": "Google LLC"
    },
    "as_domain": {
      "type": "string",
      "example": "google.com"
    },
    "country_code": {
      "type": "string",
      "example": "US"
    },
    "country": {
      "type": "string",
      "example": "United States"
    },
    "continent_code": {
      "type": "string",
      "example": "NA"
    },
    "continent": {
      "type": "string",
      "example": "North America"
    }
  },
  "required": [
    "ip",
    "asn",
    "as_name",
    "as_domain",
    "country_code",
    "country",
    "continent_code",
    "continent"
  ]
}