# Oromi URL Status Checker

> Oromi URL Status Checker is a paid API for AI agents from agents.oromi.co.uk, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Checks whether a given URL is reachable, returning its HTTP status code, final URL after redirects, and optionally the page title

## Facts

- Endpoint: GET https://agents.oromi.co.uk/api/web/url-status
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/oromi-url-status-checker-02015e40
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_5bTkrahNylnf0IP0e3Usx

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 oromi-url-status-checker-02015e40
```

Example prompt: Can you check if https://example.com/article is actually reachable and tell me what the final URL is after any redirects — and also grab the page title while you're at it?

## When to prefer this

Use this endpoint when you need a lightweight, pay-per-call URL reachability check without setting up infrastructure — particularly useful for agents validating links before surfacing them to users, resolving redirects, or confirming a resource is live. Prefer it over full web scraping tools when you only need the status code, final URL, and optionally the page title, not the page content.

## Known failure modes

- URL is unreachable or times out — may return a non-200 status or error object
- Malformed URL input returns a validation error
- DNS resolution failure for the given domain
- URL returns a non-HTTP response (e.g. FTP) — unsupported
- Payment not processed via x402 protocol — 402 response returned before data is delivered

## How this service works

Machine-payable APIs for AI agents, paid per call in USDC via the x402 protocol: UK business data (Companies House), UK property market data (HM Land Registry), website agent-readiness audits, and crypto market context.

## Output

A JSON object containing: 'ok' (boolean indicating success), 'status' (HTTP status code of the final response), 'final_url' (the URL after following any redirects), 'redirected' (boolean indicating whether a redirect occurred), and optionally 'title' (the page title if include_title=1 was set).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "url"
     ],
     "properties": {
      "url": {
       "type": "string",
       "description": "URL to check"
      },
      "include_title": {
       "type": "string",
       "description": "Set to 1 to also fetch the page title"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "status": 200,
  "final_url": "https://example.com/article",
  "redirected": false
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/oromi-url-status-checker-02015e40/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agents.oromi.co.uk](https://www.zero.xyz/host/agents.oromi.co.uk/llms.txt)
