Empowering Developers with Precise IP Location Data

Leveraging both public and proprietary data sources, we offer an IP address API that stands out for its accuracy and regular updates at ipradar.codeday.dev.

Dive into our competitively priced plans, starting at just $5 for 5000 requests, each tailored to meet developers' needs for precision and reliability.

 IPRadar
by CodeDay LLC

Dive into our competitively priced plans, starting at just $5 for 5000 requests, each tailored to meet developers' needs for precision and reliability.

CURL

Effortlessly evaluate the API through the widely utilized curl command via your command-line interface.

# open a new Powershell  / Terminal   and then paste:
curl 'https://ipradar.codeday.dev/api/info?ip=127.0.0.1'
          

JavaScript

Access the API seamlessly from any web browser using  JavaScript, or employ it within a   Node.js environment.

fetch('https://ipradar.codeday.dev/api/info?ip=127.0.0.1')
  .then(result => result.json())
  .then(result => console.log(result));
                      

Python

Naturally, integrating with Python utilizing the requests module is also a viable option.

# install requests module
import requests

url = 'https://ipradar.codeday.dev/api/info?ip=127.0.0.1'
result = requests.get(url)
print(result.json())
              

PHP

Incorporate the API into your PHP application using the provided code snippets, compatible across various PHP frameworks such as Laravel and CodeIgniter

$url = 'https://ipradar.codeday.dev/api/info?ip=127.0.0.1';
echo file_get_contents($url);

We use cookies

We use our own and third-party cookies to personalize content and to analyze web traffic. Read more about cookies