# AutoScrape HTTP Status Check API

> AutoScrape HTTP Status Check API is a paid API for AI agents from autoscrape-api-seven.vercel.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Checks one or more public URLs for their HTTP status codes, redirect chains, and reachability

## Facts

- Endpoint: GET https://autoscrape-api-seven.vercel.app/x402/v1/http-status-check
- 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/autoscrape-http-status-check-api-c14b3669
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_tZV2sjY28lnlSWrtNqVUk

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 autoscrape-http-status-check-api-c14b3669
```

Example prompt: Can you check if these three URLs are up and what status codes they return — https://example.com, https://httpbin.org/status/404, and https://github.com — and tell me if any redirects are happening?

## When to prefer this

Choose this endpoint when you need lightweight, fast HTTP status checks on public URLs without running a full browser or scraper — ideal for link validation, uptime probing, redirect chain inspection, or bulk broken-link detection on up to 10 URLs at once. Prefer it over full scraping tools when you only need status metadata, not page content.

## Known failure modes

- Timeout if a URL takes longer than the configured timeout (default 5s, max 8s) to respond
- Private or non-public URLs (e.g. localhost, intranet hosts) will likely fail or return connection errors
- Maximum of 10 URLs per request — requests for more will be truncated
- Malformed URLs that are not valid HTTP/HTTPS will return errors
- SSL certificate errors on HTTPS URLs may cause failures
- Rate limiting or firewall blocking by target servers may produce unexpected status codes

## How this service works

No-key evaluation APIs for public data and utilities: business filings, permits, bankruptcy dockets, NPI providers, HTTP status checks, sitemap URL extraction, SEC EDGAR, IRS 990, WHOIS, and validation. Paid x402 access is live.

## Output

Returns a JSON object with a count of checked URLs and an array of results per URL, each containing: the original URL, the final URL after redirects, a boolean isBroken flag, the HTTP status code (e.g. 200, 301, 404), the status text (e.g. OK, Not Found), and the full redirect chain as an array.

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "count": 1,
  "results": [
   {
    "url": "https://example.com",
    "finalUrl": "https://example.com",
    "isBroken": false,
    "statusCode": 200,
    "statusText": "OK",
    "redirectChain": []
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/autoscrape-http-status-check-api-c14b3669/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from autoscrape-api-seven.vercel.app](https://www.zero.xyz/host/autoscrape-api-seven.vercel.app/llms.txt)
