# Orbonomy Crawl - Web Metadata Extraction

> Orbonomy Crawl - Web Metadata Extraction is a paid API for AI agents from crawl.orbonomy.xyz, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-16).

Fetches and extracts metadata and content from a given URL for AI agents, paid per request via USDC x402

## Facts

- Endpoint: POST https://crawl.orbonomy.xyz/api/metadata
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/orbonomy-crawl-web-metadata-extraction-6a6c9881
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_QIFbT4bSja3xpc-xdsI47

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 orbonomy-crawl-web-metadata-extraction-6a6c9881 -d '<json body>'
```

Example prompt: Can you fetch and extract the metadata and content from https://example.com/article so I can analyze what's on that page?

## When to prefer this

Choose this endpoint when an AI agent needs to fetch or extract metadata and content from a specific URL without managing subscriptions or API keys, especially when pay-per-use USDC billing via x402 is acceptable and the use case is lightweight single-URL retrieval.

## Known failure modes

- Invalid or unreachable URL returns an error or success:false
- Payment failure via x402 prevents the request from being processed
- Paywalled or bot-protected pages may return incomplete or no content
- Malformed URL input causes a validation error
- Timeout if the target page is slow to respond

## How this service works

Web scraping and search for AI agents. No auth, no subscriptions. Pay per request in USDC via x402.

## Output

Returns a JSON object with a success boolean and a data object containing extracted metadata and content from the provided URL, such as page title, description, and other structured information found at that address.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "url"
 ],
 "properties": {
  "url": {
   "type": "string",
   "description": "URL to analyze"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "data": {
   "type": "object"
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/orbonomy-crawl-web-metadata-extraction-6a6c9881/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from crawl.orbonomy.xyz](https://www.zero.xyz/host/crawl.orbonomy.xyz/llms.txt)
