# Brand Retrieve by Name

> Brand Retrieve by Name 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).

Looks up and returns brand/company data for a given company name

## Facts

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

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 brand-retrieve-by-name-7ba96c77
```

Example prompt: Can you look up the brand information for 'Apple Inc' and tell me what you find about their branding?

## When to prefer this

Use this endpoint when you have a company name and need to retrieve its brand data without a known identifier. Prefer this over domain-based or ID-based lookups when only the human-readable company name is available. Best for brand enrichment workflows, CRM population, or quick brand lookups by name.

## Known failure modes

- Company name not found — returns empty or null brand data
- Name too short or too long (must be 3-30 characters) — returns validation error
- Request timeout if timeoutMS exceeded — returns 408 status
- Ambiguous company name matching multiple entities — may return incorrect or generic brand data
- Network or upstream service failure — returns 5xx error

## How this service works

Retrieve brand information using a company name. This endpoint searches for the company by name and returns its brand data.

## Output

Returns brand data associated with the specified company name, including brand identity and related company information retrieved via a name-based search.

## 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": {
      "name": {
       "type": "string",
       "description": "Company name to retrieve brand data for (e.g., 'Apple Inc', 'Microsoft Corporation'). Must be 3-30 characters."
      },
      "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."
      },
      "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)."
      },
      "country_gl": {
       "type": "string",
       "description": "Optional country code (GL parameter) to specify the country. This affects the geographic location used for search queries."
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

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