> ## Documentation Index
> Fetch the complete documentation index at: https://xoxno.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# List every token currently routable from the live snapshot.

> Sorted by graph degree descending (most-connected tokens first), then by
canonical id ascending. Useful for building token selectors and verifying
that a token has at least one tradeable edge before quoting.



## OpenAPI

````yaml /api-reference/stellar-aggregator-openapi.json get /api/v1/tokens
openapi: 3.1.0
info:
  title: Stellar DEX Aggregator API
  description: >-
    DEX aggregator and routing engine for Stellar across Soroswap, Aquarius,
    Phoenix, native AMM (SDEX), and static SAC bridges.


    ## Features

    - Forward & reverse quotes (given input → output, or target output → input)

    - Multi-path split allocation across pools to minimize price impact

    - Optional server-side simulated `TransactionEnvelope` ready to sign

    - Run-and-pick across Aggregator (Soroban) and SDEX (Classic) planes

    - Auto-fallback when the on-chain budget rejects the requested config

    - Echoes USD value + protocol/referral fees
  license:
    name: MIT
    identifier: MIT
  version: 0.1.0
servers: []
security: []
tags:
  - name: Health
    description: Liveness and readiness probes
  - name: Tokens
    description: Routable token catalog
  - name: Quote
    description: Routing, quoting, and transaction-envelope construction
paths:
  /api/v1/tokens:
    get:
      tags:
        - Tokens
      summary: List every token currently routable from the live snapshot.
      description: >-
        Sorted by graph degree descending (most-connected tokens first), then by

        canonical id ascending. Useful for building token selectors and
        verifying

        that a token has at least one tradeable edge before quoting.
      operationId: tokens_handler
      responses:
        '200':
          description: List of routable tokens
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/TokenEntry'
components:
  schemas:
    TokenEntry:
      type: object
      required:
        - id
        - kind
        - decimals
        - degree
      properties:
        code:
          type:
            - string
            - 'null'
          description: 'For Classic only: just the code (e.g. "USDC") for dev convenience.'
        decimals:
          type: integer
          format: int32
          minimum: 0
        degree:
          type: integer
          description: Neighbor count in the pool graph — how many edges this token has.
          minimum: 0
        id:
          type: string
          description: |-
            Canonical identifier: C-strkey for Soroban, "XLM" for native,
            "CODE:GISSUER" for Classic.
        kind:
          type: string
        sac_peer:
          type:
            - string
            - 'null'
          description: If this token has a SAC peer, the SAC's canonical identifier.

````