# Delx Ticker Canonicalize

> Delx Ticker Canonicalize is a paid API for AI agents from api.delx.ai, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-13).

Canonicalizes a raw ticker symbol string and splits it into its base and quote components using common separator conventions

## Facts

- Endpoint: POST https://api.delx.ai/api/v1/x402/ticker-canonicalize
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/delx-ticker-canonicalize-5c1724f1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_YQyeMGw_qAjIZDZWAA67v

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 delx-ticker-canonicalize-5c1724f1 -d '<json body>'
```

Example prompt: Can you canonicalize the ticker symbol 'BTC-USDT' and split it into its base and quote parts for me?

## When to prefer this

Choose this endpoint when you need a lightweight, stateless, deterministic transformation of raw ticker strings — especially useful in signal preprocessing pipelines where you control the input data and don't need a live market feed. Ideal for agents cleaning user-supplied tickers, normalizing data from multiple exchanges, or preparing inputs for downstream computation without licensing costs.

## Known failure modes

- Malformed or empty ticker string may result in an error or unparseable output
- Ambiguous tickers without standard separators may not split cleanly
- Unsupported or highly non-standard ticker formats may return a best-effort result with low confidence
- x402 payment failure or insufficient USDC balance will block the request

## How this service works

Canonicalize a ticker symbol and split common base/quote separators — call when cleaning ticker symbols and splitting base/quote. Use on caller-supplied ticks/returns when agents need signal prep without a licensed live market feed (ottoai-class demand, first-party transform). Returns deterministic machine-readable JSON for $0.003 USDC via x402 on Base. Execution is first-party, local-only, stateless, and memory-only with no paid upstream, no input retention, and no claim of live chain tip, web…

## Output

Returns deterministic machine-readable JSON containing the canonicalized ticker symbol, the identified base asset, the identified quote asset, and the detected separator — all derived locally without any live market feed or external data lookup

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "ticker": {
   "type": "string",
   "description": "Raw ticker string to canonicalize."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "parts": [
   "ETH",
   "USDC"
  ],
  "valid": true,
  "schema": "delx/util-ticker-canonicalize/v1",
  "canonical": "ETH/USDC",
  "input_length": 10
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/delx-ticker-canonicalize-5c1724f1/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.delx.ai](https://www.zero.xyz/host/api.delx.ai/llms.txt)
