# Qonoro URL Health Check

> Qonoro URL Health Check is a paid API for AI agents from api.qonoro.ai, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Checks whether a URL is reachable and returns HTTP status, redirect chain, SSL certificate validity and expiry, content type, and response time.

## Facts

- Endpoint: POST https://api.qonoro.ai/v1/url/health
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/qonoro-url-health-check-9cbf0781
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_QUo0g5fCyTSV2Hw8p53Th

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability qonoro-url-health-check-9cbf0781 -d '<json body>'
```

Example prompt: Can you check if https://docs.example.com/api/reference is actually reachable right now, and tell me its HTTP status, whether it redirects anywhere, and whether the SSL certificate is valid and when it expires?

## When to prefer this

Use this endpoint when you need a quick, structured health snapshot of a single URL — including SSL status, redirect following, and response time — in one call. Prefer it over generic HTTP ping tools when you need certificate expiry details or redirect chain visibility alongside uptime status.

## Known failure modes

- URL is unreachable or DNS does not resolve — returns error indicating the host could not be contacted
- Invalid or malformed URL input — returns validation error
- Request timeout if the target server is very slow — returns timeout error
- SSL handshake failure reported as SSL invalid
- Non-HTTP/HTTPS schemes may be unsupported

## How this service works

Check URL health: HTTP status code, redirect chain, SSL certificate validity and expiry date, content type, and response time. HTTP and SSL inspection. Sub-second. x402-native.

## Output

Returns the HTTP status code, full redirect chain (if any), SSL certificate validity flag, certificate expiry date, detected content type, and response time in milliseconds for the given URL.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "url": {
   "type": "string",
   "description": "URL to check (e.g. 'https://stripe.com' or 'stripe.com')."
  },
  "buyer_region": {
   "type": "string",
   "description": "Optional privacy-safe buyer region for operational reporting."
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/qonoro-url-health-check-9cbf0781/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.qonoro.ai](https://www.zero.xyz/host/api.qonoro.ai/llms.txt)
