Quick Start Guide
Get up and running with IPDrift in minutes. Follow these simple steps to start using our IP geolocation API.
1
Get Your API Key
Sign up for a free account to get your API key. No credit card required.
curl "https://geo.ipdrift.com/v1/lookup?ip=8.8.8.8" \
-H "Authorization: Bearer YOUR_API_KEY"
2
Make Your First Request
Test the API with a simple lookup. You'll get comprehensive IP information including location, ISP, and security data.
curl "https://geo.ipdrift.com/v1/lookup?ip=8.8.8.8"
3
Integrate Into Your App
Use our SDKs or make direct HTTP requests. We support all major programming languages.
JavaScript
const response = await fetch(
'https://geo.ipdrift.com/v1/lookup?ip=8.8.8.8'
);
const data = await response.json();
Python
import requests
response = requests.get(
'https://geo.ipdrift.com/v1/lookup?ip=8.8.8.8'
)
data = response.json()
Additional Resources
Postman Collection
Ready-to-use Postman collection with all API endpoints and examples.
Download CollectionAPI Documentation
Complete API reference with detailed examples and response formats.
View Documentation