Tools

Web Check

Analyze a URL's status, latency, and headers.

GET /v1/tools/web-check

https://api.cludz.net/v1/tools/web-check

Check the status, response time, and headers of a website.

Query Parameters:

ParameterRequiredDescriptionType
urlYesThe URL to check (must start with http:// or https://).string

Example

curl "https://api.cludz.net/v1/tools/web-check?url=https://google.com" \
  -H "Authorization: Bearer YOUR_API_KEY"

Response

{
  "statusCode": 200,
  "statusMessage": "OK",
  "message": "Web check executed",
  "data": {
    "success": true,
    "status": 200,
    "statusText": "OK",
    "latency": "150ms",
    "size": "5000 bytes",
    "headers": {
      "content-type": "text/html; charset=UTF-8",
      "server": "gws"
    }
  }
}
Built with 💖 by Miza • © 2026 - Powered by Nuxt