Hosted Domains API


Available in: Business, and Enterprise


Our Hosted Domains, or Reverse IP API returns a list of all of the domains hosted on the provided IP address.


Business plan users receive up to 5 domains per API request, while Enterprise plan users receive up to 1,000 domains per API request.


curl "api.ip.cc/domains/1.1.1.1?token=$TOKEN"


{
  "ip": "1.1.1.1",
  "total": 32628,
  "domains": [
    "mp3hq.org",
    "nfmovies.com",
    "myserviceaccount.com",
    "authrock.com",
    "exodushomecoming.com",
    "robuilt.co",
    "lorealesbello.com",
    "ecomlegendsacademy.com",
    ...
   ]
}


API pagination with the page parameter


The page query parameter can be used to go through paginated records. page starts at 0 and the parameter is part of the response when included in the request.


curl "api.ip.cc/domains/1.1.1.1?token=$TOKEN&page=2" 


{
  "ip": "1.1.1.1",
  "page": "2",
  "total": 32628,
  "domains": [
    "aozhouyunl.com",
    "k30pl.cn",
    "111book.icu",
    "www.iimbmdw.cn",
    "checkmyhorse.com",
    "tqfidke.cn",
    "asseenontvsuperwaveoven.com",
    "asseenontvprizes.com",
    "optical-encoder.org",
    ...
  ]
}


Limiting the number of domains per API requests


The API returns 5 domains per API request on the Business tier and 1,000 domains per API request on the Enterprise tier. For both the API and the database, we have a total limit of 1,000 domains per IP address. The limit parameter can be used to control the number of domains per page.


curl "api.ip.cc/domains/1.1.1.1?token=$TOKEN&limit=5"   


{
  "ip": "1.1.1.1",
  "total": 32628,
  "domains": [
    "mp3hq.org",
    "nfmovies.com",
    "myserviceaccount.com",
    "authrock.com",
    "exodushomecoming.com"
  ]
}