perpConciseAnnotations

Returns concise annotations for every annotated perpetual asset as a list of [coin, annotation] pairs. Each annotation carries the category plus optional display name and keywords — the description is omitted (use perpAnnotation for the full description of a single asset).

Field
Type
Description

type

string

Must be "perpConciseAnnotations"

Request

curl -X POST https://api.hydromancer.xyz/info \
  -H "Authorization: Bearer $HYDROMANCER_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "type": "perpConciseAnnotations"
  }'

Response Fields

Field
Type
Description

(root)

array

Array of [coin, annotation] pairs

[n][0]

string

Perp asset name (with DEX prefix for builder-deployed perps)

[n][1].category

string

Asset category

[n][1].displayName

string?

Optional display name

[n][1].keywords

array?

Optional list of search keywords

Response
[
  ["flx:BTC", { "category": "crypto" }],
  ["flx:COIN", { "category": "stocks" }],
  ["para:AVGO", { "category": "stocks", "keywords": ["broadcom", "ai"] }],
  ["para:BTCD", { "category": "crypto", "displayName": "BTC.D", "keywords": ["dominance", "index"] }]
]

Last updated