# 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-14).

Returns a lightweight brand profile for a given domain, including domain, title, colors, logos, and backdrops — optimized for speed and minimal data transfer.

## Facts

- Endpoint: GET https://x402.orthogonal.com/context-dev/brand/retrieve-simplified
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/orthogonal-brand-simplified-retrieval-688ab0f0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_oZYGgR7LPjx_3zsukweIC

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-688ab0f0
```

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

## When to prefer this

Choose this endpoint when you need fast, lightweight brand identity data (colors, logos, title, backdrops) for a domain and do not require the full brand data payload. Ideal for UI theming, automated brand enrichment pipelines, or any scenario where reduced latency and smaller response size are priorities over completeness.

## Known failure modes

- Domain not found or unrecognized — returns empty or null brand data
- Request timeout exceeded (408) if the domain's brand data takes longer than the specified timeoutMS
- Invalid domain format causing a bad request error
- Brand data not yet indexed for the requested domain

## 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 data object containing: domain name, brand title, color palette, logo URLs, and backdrop image URLs — stripped of non-essential fields for fast retrieval.

## 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",
       "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-688ab0f0/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)
