Lookup and Identify

IP Address

Are you overpaying for ip lookup service? iploka offers one of the most affordable IP to geolocation APIs and global IP database services worldwide.


GET FREE API KEY View Sample Code
                        
                        
                        
Simple process to start
Get Started in 3 Steps
1
Sign up

Sign up to iploka in less than 5 minutes

2
Get API Key

Find your API key inside iploka dashbaord

3
Lookup IP Address

Reveal your visitors geolocation information


// set IP address and API access key
$api_key = 'YOUR_API_KEY';
$ip = 'YOURIPHERE';

// Initialize CURL:
$ch = curl_init('https://api.iploka.com/'.$ip.'?api_key='.$api_key.'');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);

// Store the data:
$json = curl_exec($ch);
curl_close($ch);

// Decode JSON response:
$api_result = json_decode($json, true);

# set IP address and API access key
API_KEY=YOUR_API_KEY
IP=YOURIPHERE

# make a curl request
curl "https://api.iploka.com/${IP}?api_key=${API_KEY}"

// set IP address and API access key
let apiKey = 'YOUR_API_KEY';
let ip = 'YOURIPHERE';

// make a http request to get ip result
fetch(`https://api.iploka.com/${ip}?api_key=${apiKey}`)
.then(response => response.json())
.then(data => console.log(data));

import requests

key = "YOUR_API_KEY"
ip = "YOURIPHERE"

res = requests.get("https://api.iploka.com/{}?api_key={}".format(ip, key))
print(res.json())

# nethttp.rb
require 'uri'
require 'net/http'

uri = URI('https://api.iploka.com/YOURIPHERE?api_key=YOUR_API_KEY')
res = Net::HTTP.get_response(uri)
puts res.body if res.is_a?(Net::HTTPSuccess)
Quick Start
Sample Code

To help you get started, we have prepared some of the most popular programming language code sample for you to copy and paste into your system that just work!

GET FREE API KEY
Your First Choice

Why Choose Us?

Powerful & Scalable
Bank-Grade Security
Rock-Solid Sources
Technical Support
Location Module

Use Iploka's extensive set of localization data to implement geographic restrictions on your site, optimize ad targeting or deliver user experiences customized based on the location of your website visitors.

Currency Module

Get instant and accurate information about the primary currency used in the location returned for the processed IP address and deliver a tailored shopping experience to your customers.

Timezone Module

Find out about the time zone your users are located in without the need for them to fill out any forms, and act accordingly based on the time-related metadata returned by the Iploka API.

Get your free quote today?
Art freedom and creativity

Lorem ipsum dolor sit amet consectetur adipiscing elit, do eiusmod tempor incididunt ut labore et dolore magna aliqua lorem ipsum dolor sit amet consectetur adipiscing elit.

Jemas Dossan
Design is not making beauty

Lorem ipsum dolor sit amet consectetur adipiscing elit, do eiusmod tempor incididunt ut labore et dolore magna aliqua lorem ipsum dolor sit amet consectetur adipiscing elit.

Jeremy Girard
Design is a plan for elements

Lorem ipsum dolor sit amet consectetur adipiscing elit, do eiusmod tempor incididunt ut labore et dolore magna aliqua lorem ipsum dolor sit amet consectetur adipiscing elit.

Colin Powell
Design is not for philosophy

Lorem ipsum dolor sit amet consectetur adipiscing elit, do eiusmod tempor incididunt ut labore et dolore magna aliqua lorem ipsum dolor sit amet consectetur adipiscing elit.

Jemas Dossan
Affordable pricing plans
Choose one of our plans get started now
Free
No hidden costs

$0

monthly
  • 10,000 request/mo
  • Location module
  • Currency module
  • Timezone module
  • Connection module
  • Premium support
Standard
Most popular

$9

monthly
  • 100,000 request/mo
  • Location module
  • Currency module
  • Timezone module
  • Connection module
  • Premium support
Premium
All you may need

$39

monthly
  • 1,000,000 request/mo
  • Location module
  • Currency module
  • Timezone module
  • Connection module
  • Premium support
Join over 10,000 developers and businesses using the Iploka API