# Orthogonal Brand Retrieve by Ticker

> Orthogonal Brand Retrieve by Ticker 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 a company's brand data using its stock ticker symbol and returns brand information associated with that company.

## Facts

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

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-by-ticker-5d2a0f86
```

Example prompt: Can you pull the brand data for Apple — ticker AAPL on NASDAQ?

## When to prefer this

Use this endpoint when you need to resolve a stock ticker symbol to its associated company brand data — ideal for enriching financial data pipelines, building investor dashboards, or performing brand research on publicly traded companies. Prefer this over generic web scraping when you need structured brand data tied to an exchange-listed company.

## Known failure modes

- Invalid or unknown ticker symbol returns an error or empty result
- Ticker exists but brand data is unavailable for that company
- Timeout if request exceeds the specified timeoutMS value (408 status)
- Wrong exchange specified leads to ticker not found
- Non-existent ticker symbols return a not-found error

## How this service works

Retrieve brand information using a stock ticker symbol. This endpoint looks up the company associated with the ticker and returns its brand data.

## Output

Returns brand data for the company associated with the given stock ticker symbol, including company identity and branding details. May include name, logo, or other brand attributes depending on coverage.

## 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": {
      "ticker": {
       "type": "string",
       "example": "AAPL",
       "description": "Stock ticker symbol to retrieve brand data for (e.g., 'AAPL', 'GOOGL', 'BRK.A'). Must be 1-15 characters, letters/numbers/dots only."
      },
      "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."
      },
      "ticker_exchange": {
       "type": "string",
       "default": "NASDAQ",
       "description": "Optional stock exchange for the ticker. Defaults to NASDAQ if not specified."
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

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