# Orthogonal AI Brand Website Data Extractor

> Orthogonal AI Brand Website Data Extractor is a paid API for AI agents from x402.orthogonal.com, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-13).

Uses AI to crawl a brand's website and extract specific structured data points based on user-defined fields.

## Facts

- Endpoint: POST https://x402.orthogonal.com/context-dev/brand/ai/query
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/orthogonal-ai-brand-website-data-extractor-749c328c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_4e5MwEkdfplCIll2bdDR0

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 orthogonal-ai-brand-website-data-extractor-749c328c -d '<json body>'
```

Example prompt: Crawl acme.com and extract these data points for me: the company's founding year (number), their headquarters location (text), and a list of their main product categories (list) — give yourself up to 2 minutes to finish.

## When to prefer this

Choose this endpoint when you need to extract specific, named data points from a brand's website in a structured, typed format and want AI to handle the crawl logic rather than writing custom scrapers. It is ideal for competitive intelligence, lead enrichment, or due diligence workflows where you know what fields you want but don't want to manually navigate the site. Prefer alternatives if you need raw HTML (use the sibling scrape endpoint) or if you need real-time data with sub-second latency.

## Known failure modes

- Timeout if the website is slow or complex and timeoutMS is exceeded (max 300000ms)
- Extraction failure if the requested data point does not exist on the crawled pages
- Incorrect or hallucinated values if the AI cannot find clear evidence on the site
- Domain unreachable or blocked, resulting in no data returned
- Rate limiting or bot detection on the target website preventing crawl

## How this service works

Use AI to extract specific data points from a brand's website. The AI will crawl the website and extract the requested information based on the provided data points.

## Output

Returns a structured object containing the extracted values for each requested data point, typed according to the specified datapoint_type (text, number, date, boolean, list, or URL), sourced from AI-guided crawling of the target domain.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "domain": {
   "type": "string",
   "description": "The domain name to analyze"
  },
  "timeoutMS": {
   "type": "integer",
   "description": "Optional timeout in milliseconds. Max 300000ms (5 minutes)."
  },
  "specific_pages": {
   "type": "object",
   "description": "Optional object specifying which pages to analyze"
  },
  "data_to_extract": {
   "type": "array",
   "description": "Array of data points to extract. Each item requires: datapoint_name (string), datapoint_type (text|number|date|boolean|list|url), datapoint_description (string), datapoint_example (string)"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/orthogonal-ai-brand-website-data-extractor-749c328c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.orthogonal.com](https://www.zero.xyz/host/x402.orthogonal.com/llms.txt)
