# Orthogonal Brand Data Retrieval

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

Retrieve brand metadata (logos, backdrops, colors, industry, description, and more) for any domain

## Facts

- Endpoint: GET https://x402.orthogonal.com/context-dev/brand/retrieve
- 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-data-retrieval-1ec4423b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_CR5EOfcxC9MSxtju_njWS

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-data-retrieval-1ec4423b
```

Example prompt: Can you pull the brand data for stripe.com — I need the logo, brand colors, industry, and company description to populate our company profile card.

## When to prefer this

Choose this endpoint when you need structured brand identity data (logos, colors, descriptions, industry) for a company given only its domain name, especially for CRM enrichment, company profile cards, onboarding workflows, or competitive intelligence dashboards. It is preferable over generic web scraping when you want clean, structured brand metadata rather than raw HTML.

## Known failure modes

- Unknown or obscure domain with no indexed brand data returns empty or partial results
- Timeout if domain lookup exceeds specified timeoutMS (408 status)
- Invalid domain format causes request failure
- Domain resolves but has no associated brand metadata in the index
- Rate limiting or payment failure (x402 protocol) blocks the request

## How this service works

Retrieve logos, backdrops, colors, industry, description, and more from any domain

## Output

Returns brand metadata for the requested domain including logo URL, backdrop image, primary and secondary brand colors, industry classification, company description, and other brand identity attributes.

## 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 brand data for (e.g., 'example.com', 'google.com'). Cannot be used with name or ticker parameters."
      },
      "maxSpeed": {
       "type": "boolean",
       "description": "Optional parameter to optimize the API call for maximum speed. When set to true, the API will skip time-consuming operations for faster response at the cost of less comprehensive data. Works with all three lookup methods."
      },
      "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-data-retrieval-1ec4423b/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)
