ASN Data


Available in: Free (Limited), Basic, Standard, Business, and Enterprise

ASN Data is information related to the ASN (Autonomous System Number) of the target IP. In the free plan, this takes the form of org field, which contains the ASN and the AS organization name.


Free Plan


curl api.ip.cc/8.8.8.8?token=$TOKEN


{
  ...
  "org": "AS15169 Google LLC",
  ...    
}


Paid Plan


curl api.ip.cc/8.8.8.8?token=$TOKEN


{
  ...
  "asn": {
    "asn": "AS15169",
    "name": "Google LLC",
    "domain": "google.com",
    "route": "8.8.8.0/24",
    "type": "business"
  }
  ...
}


You can learn more about the ASN API from its documentation page.