/v1/geo/search?q={query}
Searches across all countries, states, and cities using a unified high-speed index.
{
"status": true,
"message": "Records retrieved successfully",
"body": [
{ "type": "city", "id": 71931, "name": "London" }
]
}
Lightning fast REST API providing access to Countries, States, Cities, IP Lookups, BGP Routing, and Disposable Email Verification. Built for performance.
https://india-api.gxpforge.com/api
Searches across all countries, states, and cities using a unified high-speed index.
{
"status": true,
"message": "Records retrieved successfully",
"body": [
{ "type": "city", "id": 71931, "name": "London" }
]
}
Retrieve a complete list of all supported countries in the database.
{
"status": true,
"message": "Countries retrieved successfully",
"body": [
{ "id": 1, "name": "Afghanistan", "iso2": "AF", "iso3": "AFG" }
]
}
Get all states or provinces associated with a specific country's ISO2 code.
{
"status": true,
"message": "States retrieved successfully",
"body": [
{ "id": 4030, "name": "Madhya Pradesh", "iso2": "MP" }
]
}
Resolve an IP address to its geographical location, ASN routing info, and organization.
{
"status": true,
"message": "IP location retrieved successfully",
"body": {
"ip": "8.8.8.8",
"asn": "AS15169",
"organization": "GOOGLE",
"country_code": "US",
"country": "United States",
"city": "Mountain View",
"latitude": 37.751,
"longitude": -97.822,
"timezone": "America/Chicago"
}
}
Perform an on-demand reverse DNS (PTR) lookup to retrieve the infrastructure hostname associated with the IP.
{
"status": true,
"message": "Hostname retrieved successfully",
"body": {
"ip": "8.8.8.8",
"hostname": "dns.google"
}
}
Instantly detect temporary, disposable, and toxic email addresses.
{
"status": true,
"message": "Email analyzed successfully",
"body": {
"domain": "0-mail.com",
"email": "rilale4443@0-mail.com",
"is_disposable": true
}
}