# Orthogonal Brand Retrieve

> Orthogonal Brand Retrieve 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 assets and metadata (logos, backdrops, colors, industry, description) for any given domain

## Facts

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

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-retrieve-ed604aad
```

Example prompt: Can you pull up the brand info for stripe.com — I need their logo, brand colors, industry, and company description.

## When to prefer this

Use this endpoint when you need structured brand metadata (logos, colors, industry, description) for a company identified by its domain name. Prefer this over general web scraping when you want clean, structured brand data without parsing raw HTML. Best for CRM enrichment, competitor analysis, directory population, or any workflow that needs visual and descriptive brand assets from a domain.

## Known failure modes

- Domain not found or unrecognized — returns empty or partial brand data
- Request timeout if domain lookup takes longer than specified timeoutMS (408 status)
- Invalid domain format — API may reject or return error
- Domain has no indexed brand data — partial or null fields returned
- Rate limiting or payment failure — 402 Payment Required if USDC payment not processed

## How this service works

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

## Output

Returns brand data for the requested domain, including logo image URLs, backdrop/banner images, primary and secondary brand colors, industry classification, textual company description, and potentially other brand metadata. Data completeness may vary by domain; maxSpeed=true returns faster but less comprehensive results.

## 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 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)."
      },
      "force_language": {
       "type": "string",
       "example": "albanian",
       "description": "Optional parameter to force the language of the retrieved brand data. Works with all three lookup methods."
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

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