# Brand Data Retrieval by Company Name

> Brand Data Retrieval by Company 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 information for a company given its name as a search query.

## Facts

- Endpoint: GET https://x402.orthogonal.com/brand-dev/v1/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-data-retrieval-by-company-name-0920fc06
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_LHT5KFaadH78FQPtjA0ES

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-data-retrieval-by-company-name-0920fc06
```

Example prompt: Can you pull up the brand data for 'Apple Inc' — I need their brand profile information retrieved by company name?

## When to prefer this

Use this endpoint when you have a company name and need to retrieve its brand data programmatically without requiring a domain or URL. Prefer this over domain-based brand lookups when only the company name is known. It's well-suited for CRM enrichment, competitive research, and marketing workflows where company names are the primary identifier.

## Known failure modes

- Company name not found — returns empty result or 404 if no match exists
- 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 unexpected brand
- Service unavailable or payment failure — returns 402 or 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 structured brand data for the requested company, including brand identity details such as name, logo references, colors, and other brand metadata associated with the company found by the name 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",
       "example": "Apple Inc",
       "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)."
      },
      "force_language": {
       "type": "string",
       "description": "Optional parameter to force the language of the retrieved brand data."
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

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