DecodesDocumentation Index
Fetch the complete documentation index at: https://hypernode-docs.polynode.dev/llms.txt
Use this file to discover all available pages before exploring further.
#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
: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
| Field | Description |
|---|---|
coin.raw | The #N form |
coin.outcome_id | Decoded N / 10 |
coin.side_index | Decoded N % 10 |
coin.asset_id | 100_000_000 + N |
coin.side_label | "Yes" for side 0, "No" for side 1 |
coin.market_title | Human-readable composed title |
outcome | Full outcome metadata (or null if not found) |
Why use this
When a webhook gives you a fill withcoin: "#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.