# Brand Product Catalog Extractor

> Brand Product Catalog 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).

Extracts a structured list of products from a brand's website, including name, description, image, pricing, and features.

## Facts

- Endpoint: POST https://x402.orthogonal.com/context-dev/brand/ai/products
- 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/brand-product-catalog-extractor-7022eb09
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_M2vxpiyA_6XzcUfwcUVeY

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 brand-product-catalog-extractor-7022eb09 -d '<json body>'
```

Example prompt: Can you extract the full product catalog from Nike's website — I need each product's name, description, price, and any available images or features.

## When to prefer this

Use this endpoint when you need to quickly extract structured product data from a brand's website without building a custom scraper. It is ideal for competitive research, market analysis, brand onboarding, or populating a product database from a live website. Prefer this over general-purpose scrapers when you specifically need product-oriented entities (name, price, features, images) returned in a structured format.

## Known failure modes

- Brand website blocks scraping or uses JavaScript-heavy rendering that prevents extraction
- Website has no clearly identifiable product pages, returning an empty list
- Product data is incomplete if pricing or images are dynamically loaded
- Rate limiting or timeout if the brand's website is slow or large
- Malformed or inaccessible URL returns an error or empty response

## How this service works

Beta feature: Extract product information from a brand's website. We will analyze the website and return a list of products with details such as name, description, image, pricing, features, and more.

## Output

A structured list of products found on the brand's website, each containing details such as product name, description, image URL, pricing, features, and other available metadata extracted from the site.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/brand-product-catalog-extractor-7022eb09/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)
