# Orthogonal Brand Styleguide Extractor

> Orthogonal Brand Styleguide 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-15).

Automatically extracts comprehensive design system information (colors, typography, spacing, shadows, UI components) from any brand's website by domain.

## Facts

- Endpoint: GET https://x402.orthogonal.com/brand-dev/v1/brand/styleguide
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/orthogonal-brand-styleguide-extractor-9377dd5e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_lJOCcSEDil5xTWTj3JnU_

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-brand-styleguide-extractor-9377dd5e
```

Example prompt: Can you extract the full design system from stripe.com — colors, typography, spacing, and UI components — optimizing for quality?

## When to prefer this

Choose this endpoint when you need to programmatically extract a complete design system from an existing website without manual inspection. It is ideal for competitive research, onboarding client brand tokens, building design system clones, or automating brand consistency checks. Prefer this over generic web scrapers when the goal is structured design-token output rather than raw HTML or text content.

## Known failure modes

- Domain not found or unreachable — returns error with invalid domain message
- Timeout exceeded if site loads slowly (max 300000ms) — returns 408 status
- Private or access-restricted site may return incomplete or empty styleguide
- Highly dynamic single-page apps may yield limited style extraction
- Invalid domain format — request rejected before scraping begins

## How this service works

Automatically extract comprehensive design system information from a brand’s website including colors, typography, spacing, shadows, and UI components.

## Output

Returns a comprehensive design system object containing the brand's color palette (primary, secondary, neutral, semantic colors with hex values), typography settings (font families, sizes, weights, line heights), spacing scale, shadow definitions, and identified UI component styles extracted from the target domain's website.

## 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",
     "properties": {
      "domain": {
       "type": "string",
       "example": "example.com",
       "description": "Domain name to extract styleguide from (e.g., 'example.com', 'google.com'). The domain will be automatically normalized and validated."
      },
      "timeoutMS": {
       "type": "integer",
       "description": "Optional timeout in milliseconds for the request. If the request takes longer than this value, it will be aborted with a 408 status code. Maximum allowed value is 300000ms (5 minutes)."
      },
      "prioritize": {
       "type": "string",
       "description": "Optional parameter to prioritize screenshot capture for styleguide extraction. If 'speed', optimizes for faster capture with basic quality. If 'quality', optimizes for higher quality with longer wait times. Defaults to 'quality' if not provided."
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/orthogonal-brand-styleguide-extractor-9377dd5e/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)
