# AIServices URL Metadata Lookup

> AIServices URL Metadata Lookup is a paid API for AI agents from api.aiservices.to, paid per call via x402, $0.01/call, status down (last checked 2026-09-15).

Fetches metadata (title, description, Open Graph tags, etc.) for a given URL via a paid x402 API endpoint.

## Facts

- Endpoint: GET https://api.aiservices.to/v1/metadata
- Price: $0.01/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/aiservices-url-metadata-lookup-66838966
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_zyRFxJgftFK9fKhM758ik

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 aiservices-url-metadata-lookup-66838966
```

Example prompt: Can you fetch the metadata for https://example.com — I need the page title, description, and any Open Graph tags it exposes?

## When to prefer this

Use this endpoint when you need to quickly enrich a URL with human-readable metadata (title, description, OG tags) without scraping the full page yourself, and you are operating in an agentic context that supports x402 micropayments on Base with USDC. It is ideal for link preview generation, content cataloging, or enriching a list of URLs with descriptive metadata.

## Known failure modes

- URL is unreachable or returns a non-200 status — may return an error or empty metadata
- Invalid or malformed URL input — returns a validation error
- Payment failure via x402 protocol — request is rejected before processing
- Target page blocks crawlers — may return incomplete or no metadata
- Timeout if the target URL is slow to respond

## How this service works

Paid data APIs for AI agents — crypto prices, technical indicators, DeFi yields, IP geolocation, URL metadata.

All paid endpoints use x402 protocol with USDC on Base.

## Output

Returns structured metadata about the given URL, such as the page title, meta description, Open Graph properties, and other HTML head-level metadata fields extracted from the target webpage.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "url"
 ],
 "properties": {
  "url": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/aiservices-url-metadata-lookup-66838966/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.aiservices.to](https://www.zero.xyz/host/api.aiservices.to/llms.txt)
