# Livecheck URL Status Verifier

> Livecheck URL Status Verifier is a paid API for AI agents from livecheck.fly.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Fetches a job or product page URL and returns whether it is live, closed, or unknown, along with the page title and detection signals like apply forms, sold-out indicators, and 404s.

## Facts

- Endpoint: POST https://livecheck.fly.dev/v1/verify
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/livecheck-url-status-verifier-28803304
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_BJRnilUpeC-D2UG-ERpFR

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 livecheck-url-status-verifier-28803304 -d '<json body>'
```

Example prompt: Before we scrape this job listing, can you check if https://jobs.example.com/software-engineer-42 is still live and has an active apply form?

## When to prefer this

Use this endpoint when you need a fast, cheap pre-flight check on a specific job or product page URL before investing time or cost in scraping or processing it. Prefer it over a general scraper when you only need live/closed/unknown status and basic signals rather than full page content. Ideal for filtering dead links, detecting sold-out products, or confirming job postings are still open in a pipeline before downstream enrichment.

## Known failure modes

- URL is behind a login/paywall, returning unknown status
- Cloudflare or bot-protection blocks the fetch, yielding unknown
- Malformed or non-absolute URL returns a validation error
- Network timeout on slow or unresponsive target server
- Search-results or index URLs passed instead of specific item pages may yield misleading signals

## How this service works

Before you scrape a job posting, Shopify or HTML product page, or eBay item, POST the specific URL you already have and Livecheck returns live, closed, or unknown plus title and signals (apply form, in-stock, sold-out, 404); not a search engine.

## Output

Returns a status classification of 'live', 'closed', or 'unknown' for the given URL, along with the page title and a set of signals detected on the page such as presence of an apply form, sold-out indicators, or a 404 HTTP response — giving the agent enough context to decide whether to proceed with further processing.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "url": {
   "type": "string",
   "description": "Absolute http(s) URL of the specific job, product, or eBay item page to check. Not a search-results URL."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "url": "https://boards.greenhouse.io/example/jobs/1842",
  "title": "Staff Backend Engineer — Northwind Labs",
  "status": "live",
  "signals": [
   "apply form present",
   "no closure banner"
  ],
  "price_usd": 0.01,
  "checked_at": "2026-08-30T21:00:00Z",
  "confidence": 0.82,
  "http_status": 200,
  "canonical_url": "https://boards.greenhouse.io/example/jobs/1842"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/livecheck-url-status-verifier-28803304/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from livecheck.fly.dev](https://www.zero.xyz/host/livecheck.fly.dev/llms.txt)
