Coming Soon

IP Dekho API

We're building a powerful, developer-friendly API for IP geolocation, threat intelligence, and network analysis. Stay tuned.

RESTful API

Simple, fast endpoints with JSON responses

Rich Data

Geolocation, ISP, threat scores & more

High Availability

99.9% uptime with global CDN distribution

api-example.js
// Coming Soon — IP Dekho API

const response = await fetch(
  'https://api.ipdekho.com/v1/lookup/8.8.8.8',
  { headers: { 'Authorization': 'Bearer YOUR_API_KEY' } }
);

const data = await response.json();
// { ip, city, region, country, isp, lat, lon, ... }
Back to Home