Developer APIs
API Documentation
Integrate our high-performance networking tools directly into your own applications, monitoring systems, and CI/CD pipelines.
Authentication
Currently, the API is available for free public use with strict rate limiting (IP-based). In the future, API keys will be required for higher rate limits.
POST
/api/tools/pingExecute an ICMP ping test against a specified host to measure latency and reachability.
Example Request (cURL)
curl -X POST https://quib.dev/api/tools/ping \
-H "Content-Type: application/json" \
-d '{"host": "google.com"}'POST
/api/tools/dnsQuery global DNS resolvers for a domain's A, AAAA, MX, and TXT records.
Example Request (cURL)
curl -X POST https://quib.dev/api/tools/dns \
-H "Content-Type: application/json" \
-d '{"domain": "github.com"}'