Abstract API · Schema

ASNInfo

Autonomous System Number information

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

Properties

Name Type Description
asn string ASN identifier
name string ASN organization name
domain string Primary domain for the ASN
type string Type of ASN (hosting, isp, business, etc.)
View JSON Schema on GitHub

JSON Schema

abstract-api-asninfo-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ASNInfo",
  "title": "ASNInfo",
  "type": "object",
  "description": "Autonomous System Number information",
  "properties": {
    "asn": {
      "type": "string",
      "description": "ASN identifier",
      "example": "AS15169"
    },
    "name": {
      "type": "string",
      "description": "ASN organization name",
      "example": "Google LLC"
    },
    "domain": {
      "type": "string",
      "description": "Primary domain for the ASN",
      "example": "google.com"
    },
    "type": {
      "type": "string",
      "description": "Type of ASN (hosting, isp, business, etc.)",
      "example": "hosting"
    }
  }
}