Skip to main content
Decodes #N coin names or numeric asset_ids into structured outcome metadata. Use this when you have a coin reference from somewhere (a fill, an order) and need to know what market + side it’s for.

Endpoint

The :coin path parameter accepts:
  • #N (URL-encoded as %23N) — e.g. /v1/coins/%230
  • A bare integer N — e.g. /v1/coins/0
  • A full asset_id — e.g. /v1/coins/100000000

Response

Why use this

When a webhook gives you a fill with coin: "#0", you don’t have to maintain a coin → market map yourself. Resolve it once, cache it client-side. The market_title is suitable for direct display.

Examples