Response Time Analyzer - DNS, TLS, TTFB Timing for Any URL avatar

Response Time Analyzer - DNS, TLS, TTFB Timing for Any URL

Pricing

$20.00 / 1,000 url checkeds

Go to Apify Store
Response Time Analyzer - DNS, TLS, TTFB Timing for Any URL

Response Time Analyzer - DNS, TLS, TTFB Timing for Any URL

Measure detailed response timing for any URL. Input: urls array. Output: JSON per URL with DNS lookup time, TCP/TLS connect time, TTFB, total transfer time, and payload size. Spot slow pages and backend bottlenecks. Priced per URL checked - cheap pay-per-result.

Pricing

$20.00 / 1,000 url checkeds

Rating

0.0

(0)

Developer

Anthony Snider

Anthony Snider

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

2 days ago

Last modified

Share

Response Time Analyzer

See exactly where a page spends its time — DNS, TCP, TLS, time-to-first-byte, total transfer, and payload size — for any URL.

Live on the Apify Store — run it instantly, or call it as an agent tool via Apify MCP.

What you get

For each URL, a full timing breakdown measured directly off the socket lifecycle (no headless browser overhead):

  • dnsMs — DNS lookup time
  • connectMs — TCP connect time
  • tlsMs — TLS handshake time (0 for plain HTTP)
  • ttfbMs — time to first byte (request sent → response headers in)
  • totalMs — full transfer time, headers + body
  • bytes / sizeKb — actual payload size transferred
  • status — HTTP status code

Pass samples > 1 to average each timing across multiple requests and smooth out jitter. Send one url or a bulk urls list — bare hostnames default to https://.

Input

{
"url": "https://github.com",
"urls": ["https://wikipedia.org", "https://example.com"],
"maxUrls": 25,
"samples": 3
}

Output

{
"url": "https://github.com/",
"status": 200,
"samples": 3,
"timing": {
"dnsMs": 12.4,
"connectMs": 18.7,
"tlsMs": 34.1,
"ttfbMs": 210.5,
"totalMs": 412.9
},
"bytes": 284512,
"sizeKb": 277.84
}

Spot slow pages, regressions, and bloated payloads — one URL or a whole list at a time.