Telize API

Geocoding / API Key Intermediate HTTPS CORS
Varies by plan (check documentation)

Overview

Telize is an IP geolocation API that returns detailed location and network information for any IP address, including country, city, coordinates, timezone, and ISP. Available via RapidAPI, it requires an API key to authenticate your requests. It is useful for analytics, fraud detection, and personalization features.

💡

Beginner Tip

Omit the IP address parameter to automatically geolocate the requesting client IP, which is useful for detecting your own location during testing. Always handle cases where geolocation returns null for private or unknown IPs.

Available Data

IP address information
geographic location
ASN and ISP data

Example Response

JSON Response
{
  "status": "success",
  "data": {
    "result": "Data from Telize",
    "description": "Telize offers location information from any IP address",
    "timestamp": "2025-01-15T10:00:00Z"
  }
}

Field Reference

ip The IP address that was geolocated.
country Full country name where the IP is registered.
country_code ISO 3166-1 alpha-2 country code (e.g., US or JP).
city City name associated with the IP address.
timezone IANA timezone identifier for the IP location (e.g., America/New_York).
isp Internet Service Provider name for the IP address.

Implementation Example

const url = "https://rapidapi.com/fcambus/api/telize/";
// Replace headers or query params with the values required by this API.
const response = await fetch(url, {
  headers: {
  "X-API-Key": "YOUR_API_KEY"
  }
});
if (!response.ok) throw new Error(`Request failed: ${response.status}`);
const data = await response.json();
console.log(data);

What Can You Build?

Note: These code examples are AI-generated and unverified. Always refer to the official API documentation for accurate usage.

Common Errors & Troubleshooting

403 Forbidden or missing RapidAPI headers The required RapidAPI authentication headers are absent.
Include X-RapidAPI-Key and X-RapidAPI-Host: telize.p.rapidapi.com in every request.
Private IP address returns empty location Local or private IP ranges (10.x.x.x, 192.168.x.x) cannot be geolocated.
Use a real public IP address for testing. You can get your public IP from https://api.ipify.org first.
429 Too Many Requests Free tier rate limit exceeded on RapidAPI.
Monitor your usage in the RapidAPI dashboard and implement request caching to reduce repeated lookups for the same IP.

Matrix Score Breakdown

🌐 Reachability 30/30
⚡ Speed 10/20
🔒 Security 15/15
🛠 Developer XP 17/20
✓ Reliability 10/15

Partially tested on Apr 5, 2026

Technical Specifications

Auth API Key
HTTPS REQUIRED
CORS YES
Category Geocoding
Difficulty Intermediate
Verified: 2026-04-04

Similar APIs

View All →