# AveDaris Page Metadata Fetcher

> AveDaris Page Metadata Fetcher is a paid API for AI agents from api.avedaris.com, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-15).

Fetches and returns metadata (title, description, canonical URL, final URL, HTTP status) for a given web page URL.

## Facts

- Endpoint: POST https://api.avedaris.com/v1/paid/page-metadata
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/avedaris-page-metadata-fetcher-f53d7329
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_UPHdPM0FAnxq8xh3sghpW

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 avedaris-page-metadata-fetcher-f53d7329 -d '<json body>'
```

Example prompt: Can you look up the title, description, and final URL for https://openai.com/research/gpt-4 and tell me what the page is about?

## When to prefer this

Use this endpoint when you need lightweight, structured page metadata (title, description, canonical URL, redirect resolution) without full HTML scraping or content parsing. It is ideal for building link previews, verifying redirect chains, or enriching URLs with human-readable summaries at low cost ($0.003/call). Prefer this over full scraping endpoints when you only need head-level metadata rather than body content.

## Known failure modes

- URL is unreachable or returns a non-200 status (status field reflects actual HTTP code)
- Page has no meta description or canonical tag (those fields return null)
- URL redirects to a page that blocks bots (may return empty or partial metadata)
- Malformed or too-short URL triggers input validation error
- Timeout if the target page is slow to respond

## How this service works

AveDaris is the economic coordination layer for autonomous software: discover, route, evaluate, procure, verify, and learn across agent services.

## Output

A JSON object containing the page title, HTTP status code, final resolved URL (after redirects), meta description, and canonical URL for the given input URL. Fields may be null if not present on the page.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "url": {
   "type": "string",
   "maxLength": 8192,
   "minLength": 8
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "result": {
   "title": "Example Domain",
   "status": 200,
   "finalUrl": "https://example.com/",
   "description": null,
   "canonicalUrl": null
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/avedaris-page-metadata-fetcher-f53d7329/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.avedaris.com](https://www.zero.xyz/host/api.avedaris.com/llms.txt)
