Discover Manually Curated
APIs for Your Applications.
At APILayer, every API is manually reviewed for quality and reliability before being published on our marketplace. Build with confidence, knowing you're accessing only the high-uptime, low-latency, efficiently designed APIs in the world.
Test API PlaygroundEASY SETUP
Get started with just a few lines of code
Sign up today and get your API key to build products on top of our APIs. Our API marketplace includes top-rated APIs for communication, geolocation, finance, and more. Start building your next product with ease.
Javascript Fetch
Javascript Axios
Python Request
Python HTTP Client
SAMPLE RESPONSE
Javascript Fetch
const url="https://api.ipstack.com/72.229.28.185,110.174.165.78?access_key=a9b57e3b51c26e5418baabf34be67947";
const options = {
method: "GET",
};
try {
const response = await fetch(url, options);
const result = await response.text();
console.log(result);
} catch (error) {
console.error(error);
}
import axios from "axios";
const options = {
method: "GET",
url: "https://api.ipstack.com/72.229.28.185,110.174.165.78?access_key=a9b57e3b51c26e5418baabf34be67947",
};
try {
const response = await axios.request(options);
console.log(response.data);
} catch (error) {
console.error(error);
}
import requests
url = "https://api.ipstack.com/72.229.28.185,110.174.165.78?access_key=a9b57e3b51c26e5418baabf34be67947"
response = requests.get(url)
print(response.json())
import http.client
conn = http.client.HTTPSConnection("api.ipstack.com")
conn.request("GET", "/72.229.28.185,110.174.165.78?access_key=a9b57e3b51c26e5418baabf34be67947")
res = conn.getresponse()
data = res.read()
print(data.decode("utf-8"))
SAMPLE RESPONSE
COMMUNITY
Everything Developers
Need to Build with APILayer.
Join a community of over 450,000+ developers and build robust products for your business.
Join our community of developers01.
What is APILayer, and how does it work?
APILayer is a marketplace offering a wide range of reliable, high-performance APIs for developers. Simply sign up, browse the curated list of APIs, and integrate them into your projects using the provided API keys and documentation.
02.
What types of APIs are available on APILayer?
APILayer Marketplace hosts APIs across various categories, including communication, geolocation, finance, AI, data processing, and more. Each API is designed with best practices that enhance your application's functionality.
03.
What does the API cost?
Each API on APILayer has its own unique pricing, which is detailed on the pricing page of the respective API. Visit the particular API's page to explore available plans and choose one that fits your needs.
USE CASES