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.

List Assets

Return all crypto assets supported by Sertexity. GET /assets  ·  🔒 Auth required

Query parameters

ParameterTypeDescription
searchstringFilter by ticker or name (e.g. BTC, Ethereum)
activebooleanDefault true. Pass false to include inactive assets.

Response 200 OK

{
  "data": [
    {
      "ticker": "BTC",
      "name": "Bitcoin",
      "symbol": "₿",
      "decimals": 8,
      "network": "Bitcoin",
      "active": true
    },
    {
      "ticker": "ETH",
      "name": "Ethereum",
      "symbol": "Ξ",
      "decimals": 18,
      "network": "Ethereum",
      "active": true
    },
    {
      "ticker": "USDT",
      "name": "Tether USD",
      "symbol": "₮",
      "decimals": 6,
      "network": "Ethereum",
      "active": true
    },
    {
      "ticker": "SOL",
      "name": "Solana",
      "symbol": "◎",
      "decimals": 9,
      "network": "Solana",
      "active": true
    }
  ],
  "meta": {
    "total": 42
  }
}
FieldTypeDescription
tickerstringAsset ticker symbol
namestringFull asset name
symbolstringDisplay glyph
decimalsintegerDecimal precision for amounts
networkstringUnderlying blockchain network
activebooleanWhether the asset is available

Example

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