How to use API Endpoint Tester
- Paste the endpoint URL (public http/https).
- Optionally choose a method, disable redirect following or add headers such as Authorization.
- Run the test and read the stats, the details panel and the header table.
- Download the headers as CSV or the body preview for a bug report.
API Endpoint Tester features
- One-click smoke test: status, total time, time-to-first-byte, size and content type
- HEAD support check, redirect chain, final URL and TLS/HSTS observations
- Caching, compression, CORS and rate-limit headers surfaced with explanations
- Header table with plain-language meaning for every header
- Body preview with automatic JSON/XML/HTML pretty-printing
API Endpoint Tester example
Smoke-test a JSON endpoint
Input:
https://httpbin.org/get?ping=1Output:
Status 200 · Total 380 ms (TTFB 210 ms) · 420 B · application/json
Reachable: Yes · TLS: HTTPS (no HSTS) · Server: gunicorn/19.9.0 · CORS: * · HEAD support: 200 in 190 msFrequently asked questions about API Endpoint Tester
What does the smoke test check?
It sends a HEAD and then a GET (or the method you choose) through the relay and reports status, total time and time-to-first-byte, size, content type, TLS/HSTS, redirects, caching, compression, CORS and rate-limit headers.
Can I test endpoints that need a token?
Yes — add an Authorization header in the extra headers field. Headers are used for this run only and are not stored.
Why is the body preview cut off?
The preview shows at most 20 000 characters so the page stays responsive; download the body output for the full text (the relay itself caps very large bodies).
Can it reach internal or localhost URLs?
No. The relay only reaches public http(s) endpoints. For local services use the API Request Builder in direct-browser mode.
Technical notes
For GET requests a HEAD request is attempted first to measure header-only latency and confirm HEAD support, then the real request is sent. Both go through the relay with a 20-second timeout.