Developer API
PingCharts API
Integrate PingCharts network diagnostics directly into your applications, dashboards, monitoring systems, or automation workflows.
Authentication
API authentication is currently invite-only during beta access. Production API keys and usage tiers will be released publicly soon.
curl https://pingcharts.com/api/ping/
Available Endpoints
Endpoint
Description
/api/ping/TCP latency testing and packet simulation
/api/http/HTTP timing, headers, and response validation
/api/dns/DNS record lookup and timing
/api/ssl/SSL/TLS certificate inspection
/api/port/TCP port reachability checks
/api/traceroute/Hop visualization and path tracing
Rate Limits
- Anonymous visitors: 10 tests per hour
- Authenticated users: higher burst limits
- Enterprise plans: custom throughput
Example Request
POST /api/ping/
{
"host": "google.com",
"count": 5
}
Example Response
{
"ok": true,
"host": "google.com",
"avg_ms": 18.2,
"min_ms": 14.8,
"max_ms": 23.1,
"loss_percent": 0
}