Everything you need to integrate Tagiee IP Intelligence API into your application.
Get up and running with Tagiee API in minutes. Just one API call to get rich IP context data.
Sign up and get your free API key to start making requests.
Use cURL, JavaScript, Python, or any HTTP client to call our API.
curl -X GET "https://api.tagiee.com/103.150.16.12" \
-H "Authorization: Bearer YOUR_API_KEY"
Receive comprehensive IP intelligence in JSON format.
{
"ip": "103.150.16.12",
"country": "Bangladesh",
"country_code": "BD",
"city": "Dhaka",
"region": "Dhaka Division",
"timezone": "Asia/Dhaka",
"local_time": "2024-01-15T19:31:45+06:00",
"currency": "BDT",
"language": "bn",
"greeting": "শুভ সন্ধ্যা! 🌙",
"weather": {
"temperature": 24,
"condition": "Clear",
"humidity": 65
}
}
Ready-to-use code snippets in popular programming languages.
// JavaScript/Node.js
const response = await fetch('https://api.tagiee.com/103.150.16.12', {
headers: {
'Authorization': 'Bearer YOUR_API_KEY'
}
});
const data = await response.json();
console.log(data);
# Python
import requests
response = requests.get(
'https://api.tagiee.com/103.150.16.12',
headers={'Authorization': 'Bearer YOUR_API_KEY'}
)
data = response.json()
print(data)