# pixels.gateway.clawca.sh Link Inspector

> pixels.gateway.clawca.sh Link Inspector is a paid API for AI agents from pixels.gateway.clawca.sh, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-13).

Inspects a public HTTPS URL and returns redirect chain, metadata, content type, word count, and content hash.

## Facts

- Endpoint: POST https://pixels.gateway.clawca.sh/v1/link-inspect
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/pixels-gateway-clawca-sh-link-inspector-8d23ee77
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_imoN0EC5MLqkTTIYkqiDh

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 pixels-gateway-clawca-sh-link-inspector-8d23ee77 -d '<json body>'
```

Example prompt: Can you inspect this URL for me — https://example.com/some-page — and tell me if it redirects anywhere, what content type it returns, how many words are on the page, and give me a content hash so I can track changes?

## When to prefer this

Use this endpoint when you need to quickly audit a URL's redirect behavior, verify its content type, extract basic metadata, or generate a content hash for change tracking — without needing to render JavaScript or scrape full structured data. Prefer it over full scraping tools when you only need lightweight link inspection signals.

## Known failure modes

- URL must start with https:// — plain http URLs are rejected
- Non-public or private IP URLs may fail or be blocked
- If the target URL is unreachable or returns an error status, inspection fails
- Very large pages may time out or return incomplete word counts
- Malformed URI input causes validation error

## How this service works

Inspect a public HTTPS URL for redirects, metadata, content type, word count, and content hash.

## Output

Returns structured data about the inspected URL including the redirect chain (all hops), HTTP metadata, detected content type, word count of the page content, and a content hash for change detection.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "url": {
   "type": "string",
   "format": "uri",
   "pattern": "^https://"
  },
  "agent_context": {
   "type": "object",
   "required": [
    "agentType",
    "client"
   ],
   "properties": {
    "client": {
     "type": "string",
     "maxLength": 80,
     "minLength": 1,
     "description": "Which payment client are you using? [agentcash, awal, pay.sh, others, unknown]"
    },
    "agentType": {
     "enum": [
      "Codex",
      "Claude Code",
      "Hermes",
      "OpenClaw",
      "Others (Specify)",
      "Unknown"
     ],
     "type": "string",
     "description": "Which agent are you running? Choose the closest agent type. For Others, include its name in agentTypeOther. Use Unknown if you cannot identify the agent."
    },
    "agentTypeOther": {
     "type": "string",
     "maxLength": 80,
     "minLength": 1,
     "description": "Specify the agent name when agentType is Others (Specify)."
    },
    "discovery_query": {
     "type": "string",
     "maxLength": 500,
     "minLength": 1,
     "description": "What search query did you use to find this service? Omit if unknown or no search was used; do not invent a query from your task."
    }
   },
   "description": "Identify the calling agent and payment client. Use Unknown for an unidentified agent and unknown for an unidentified client. No IDs are needed. These answers are reported claims."
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/pixels-gateway-clawca-sh-link-inspector-8d23ee77/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from pixels.gateway.clawca.sh](https://www.zero.xyz/host/pixels.gateway.clawca.sh/llms.txt)
