# Site Brief – Website Metadata & Agent-Readiness Analyzer

> Site Brief – Website Metadata & Agent-Readiness Analyzer is a paid API for AI agents from agentic-market-site-brief.vercel.app, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Fetches compact metadata, headings, links, and agent-readiness signals (API/docs/pricing/contact language detection) for any public URL.

## Facts

- Endpoint: GET https://agentic-market-site-brief.vercel.app/api/site-brief
- 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/agentic-market-site-brief-vercel-app-64a64afa
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ofrujtHfN0hJh6-2OjjyJ

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 agentic-market-site-brief-vercel-app-64a64afa
```

Example prompt: Can you pull a quick brief on https://stripe.com — I want the page title, main headings, key links, and whether the site has any API or pricing language on it?

## When to prefer this

Choose this endpoint when you need a lightweight, structured snapshot of a public webpage — especially when assessing whether a site exposes API, docs, pricing, or contact surfaces for agent workflows. Prefer this over full-page scrapers when you only need metadata, headings, and top-level links without full HTML content.

## Known failure modes

- URL is unreachable or returns non-200 status — endpoint may return an error or empty fields
- Private/intranet URLs that are not publicly accessible will fail to load
- Very large or JavaScript-heavy pages may return incomplete headings or links
- Malformed URL input causes schema validation failure
- Rate limiting or network timeouts may cause intermittent failures

## How this service works

Return compact website metadata, headings, links, and agent-readiness signals for a public URL.

## Output

Returns the requested URL, final URL after redirects, page title, meta description, excerpt, list of headings, list of href/text link pairs, and an agentSignals object indicating boolean flags for hasApiLanguage, hasDocsLanguage, hasContactLanguage, and hasPricingLanguage.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "url": "https://stripe.com"
  }
 }
}
```

## 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",
       "format": "uri",
       "description": "Public http or https URL to analyze."
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "requestedUrl",
      "finalUrl",
      "title",
      "headings",
      "links"
     ],
     "properties": {
      "links": {
       "type": "array",
       "items": {
        "type": "object",
        "properties": {
         "href": {
          "type": "string"
         },
         "text": {
          "type": "string"
         }
        }
       }
      },
      "title": {
       "type": "string"
      },
      "excerpt": {
       "type": "string"
      },
      "finalUrl": {
       "type": "string"
      },
      "headings": {
       "type": "array",
       "items": {
        "type": "string"
       }
      },
      "description": {
       "type": "string"
      },
      "agentSignals": {
       "type": "object",
       "properties": {
        "hasApiLanguage": {
         "type": "boolean"
        },
        "hasDocsLanguage": {
         "type": "boolean"
        },
        "hasContactLanguage": {
         "type": "boolean"
        },
        "hasPricingLanguage": {
         "type": "boolean"
        }
       }
      },
      "requestedUrl": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agentic-market-site-brief-vercel-app-64a64afa/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agentic-market-site-brief.vercel.app](https://www.zero.xyz/host/agentic-market-site-brief.vercel.app/llms.txt)
