API Documentation

Everything you need to integrate Tagiee IP Intelligence API into your application.

Quick Start

Get up and running with Tagiee API in minutes. Just one API call to get rich IP context data.

1

Get Your API Key

Sign up and get your free API key to start making requests.

2

Make Your First Request

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"
3

Get Rich Context Data

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
  }
}

Code Examples

Ready-to-use code snippets in popular programming languages.

JavaScript

// 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

# 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)