DevOps Free Tier Available
PingAPI
Ping any URL or IP from multiple global locations. Get response time, status, and headers.
Free tier: 10,000 pings/month Method:
GET Quick Start
Get started with PingAPI in 3 steps:
- 1. Get your free API key (instant, no credit card)
- 2. Activate your key to unlock all endpoints
- 3. Make your first request using the examples below
Endpoint
GET https://freeapitools.dev/api/v1/ping
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
target | string | Required | URL or IP to ping |
locations | string[] | Optional | us-east, eu-west, asia-east |
api_key | string | Required | Your API key. Get one free → |
Code Examples
cURL
curl "https://freeapitools.dev/api/v1/ping?target=example"
Node.js / JavaScript
const response = await fetch(
'https://freeapitools.dev/api/v1/ping?target=example',
{ headers: { 'X-API-Key': 'YOUR_API_KEY' } }
);
const data = await response.json();
console.log(data); Python
import requests
response = requests.get(
'https://freeapitools.dev/api/v1/ping',
params={'target': 'example'},
headers={'X-API-Key': 'YOUR_API_KEY'}
)
print(response.json()) Example Response
{
"alive": true,
"latency_ms": 45,
"status": 200,
"location": "us-east-1"
} Rate Limits
| Plan | Limit | Price |
|---|---|---|
| Free | 10,000 pings/month | $0 / month |
| Enhanced (10x) | 10x free tier limits | $0 / month — complete compatibility check |
| Unlimited | No limits | $0 / month — send environment profile |
Start Using PingAPI for Free
Get your API key instantly. No credit card, no signup form — just a simple API call.
Get Free API Key →