IPinfo · Schema

FullResponse

FullResponse schema from IPinfo API

IP IntelligenceIP GeolocationASNPrivacy DetectionVPN DetectionThreat IntelligenceNetwork DataMobile CarrierWHOISPublic APIsDevelopment

Properties

Name Type Description
ip string
bogon boolean
hostname string
city string
region string
country string
loc string
postal string
timezone string
org string
asn object
company object
carrier object
privacy object
domains object
View JSON Schema on GitHub

JSON Schema

ipinfo-full-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-full-response-schema.json",
  "title": "FullResponse",
  "description": "FullResponse schema from IPinfo API",
  "type": "object",
  "properties": {
    "ip": {
      "type": "string",
      "example": "66.87.125.72"
    },
    "bogon": {
      "type": "boolean",
      "example": false
    },
    "hostname": {
      "type": "string",
      "example": "ip-66-87-125-72.spfdma.spcsdns.net"
    },
    "city": {
      "type": "string",
      "example": "Springfield"
    },
    "region": {
      "type": "string",
      "example": "Massachusetts"
    },
    "country": {
      "type": "string",
      "example": "US"
    },
    "loc": {
      "type": "string",
      "example": "42.0999,-72.5783"
    },
    "postal": {
      "type": "string",
      "example": "01105"
    },
    "timezone": {
      "type": "string",
      "example": "America/New_York"
    },
    "org": {
      "type": "string",
      "example": "AS51501 Khabarovsk home networks Ltd"
    },
    "asn": {
      "$ref": "./ipinfo-asn-response-schema.json"
    },
    "company": {
      "$ref": "./ipinfo-company-response-schema.json"
    },
    "carrier": {
      "$ref": "./ipinfo-carrier-response-schema.json"
    },
    "privacy": {
      "$ref": "./ipinfo-privacy-response-schema.json"
    },
    "domains": {
      "$ref": "./ipinfo-domains-response-schema.json"
    }
  },
  "required": [
    "ip"
  ]
}