Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.sertexity.com/llms.txt

Use this file to discover all available pages before exploring further.

Get Asset

Retrieve details for a single asset by its ticker. GET /assets/{ticker}  ·  🔒 Auth required

Path parameters

ParameterDescription
tickerAsset ticker, e.g. BTC, ETH, SOL

Response 200 OK

{
  "ticker": "BTC",
  "name": "Bitcoin",
  "symbol": "₿",
  "decimals": 8,
  "network": "Bitcoin",
  "active": true
}

Errors

CodeHTTPCause
NOT_FOUND404Ticker not supported

Example

curl https://api.sertexity.com/v1/assets/BTC \
  -H "Authorization: Bearer <access_token>"