IPQuery Docs
Home to the main documentation for ipquery.io. IPQuery aims to provide a straightforward and simplistic api for working with ip address's.
Basic Request
GET /
Python Example
import requests
req = requests.get("https://api.ipquery.io/")
print(req.text) # Your ip addressResponse
1.1.1.1Query Specific IP Address
GET /1.1.1.1
Python Example
Response
Bulk Query A List of IP Address's
GET /1.1.1.1,2.2.2.2
Python Example
Response Example
Changing Response Formats
GET /1.1.1.1?format=yaml
Python Example
Response
GET /1.1.1.1?format=xml
Response
Last updated