# Orthogonal Brand Simplified Retrieval

> Orthogonal Brand Simplified Retrieval 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).

Retrieves a lightweight brand data snapshot for a domain, returning only essential branding elements: domain, title, colors, logos, and backdrops.

## Facts

- Endpoint: GET https://x402.orthogonal.com/brand-dev/v1/brand/retrieve-simplified
- 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-brand-simplified-retrieval-a49a2c27
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_jQ6bkBH1HGiVnmtSt-aG8

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-simplified-retrieval-a49a2c27
```

Example prompt: Can you pull the simplified brand data for stripe.com — I just need the colors, logos, and title, nothing fancy.

## When to prefer this

Choose this endpoint when you only need core brand identity elements (colors, logos, title, backdrops) and want a faster, lighter response than a full brand retrieval. Ideal for UI previews, competitive brand snapshots, or enriching company records with visual identity data without the overhead of a complete brand dataset.

## Known failure modes

- Domain not found or has no detectable brand data — returns empty or partial result
- Request exceeds the specified timeoutMS threshold — returns 408 status
- Invalid domain format in query parameter — returns validation error
- Domain exists but has no crawlable brand assets — minimal or null fields returned

## How this service works

Returns a simplified version of brand data containing only essential information: domain, title, colors, logos, and backdrops. This endpoint is optimized for faster responses and reduced data transfer.

## Output

A simplified brand object containing the domain name, site title, primary and secondary brand colors, logo image URLs, and backdrop/hero image URLs — optimized for fast delivery with minimal payload.

## 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 retrieve simplified brand data for"
      },
      "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)."
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/orthogonal-brand-simplified-retrieval-a49a2c27/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)
