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

# List tokens

> 
Returns a list of tokens supported by Faraday.




## OpenAPI

````yaml /api-reference/faraday-api.json get /v1/tokens
openapi: 3.1.0
info:
  title: Faraday API
  description: >-

    The **Faraday API** provides secure, compliant infrastructure for stablecoin
    transactions, identity verification, and transaction monitoring across
    multiple blockchains.


    ### Key Features

    - **Swap Routing** — Discover optimal swap paths for stablecoin transfers,
    including cross-chain routes.

    - **IVMS101 Person Records** — Create, query, and manage structured person
    data for FATF Travel Rule compliance.

    - **Transaction Submission and Monitoring** — Submit and track stablecoin
    transactions.

    - **Reporting** — View historical transaction reports including associated
    IVMS101 records.


    ### Authentication

    Most requests require an API key (Bearer token).


    Generate and manage API keys by signing in to https://app.range.org/


    API Keys can be found under the APIs section. A free monthly credit
    allowance is available, with more credits available to paid plans.


    Include this header with every authenticated Faraday request:


    ```

    Authorization: Bearer <your_token>

    ```


    ### Base URL

    - Production: `https://api.faraday.range.org`


    ### Example Request

    ```bash

    curl -X GET 'https://api.faraday.range.org/v1/persons'   --header
    'Authorization: Bearer <your_token>'

    ```
            
  contact:
    name: Faraday
    url: https://range.org/faraday
    email: faraday@range.org
  license:
    name: ''
  version: 1.0.0
servers:
  - url: https://api.faraday.range.org
    description: Production
security:
  - BearerAuth: []
tags:
  - name: Transactions
    description: Send, track and find transactions
  - name: Persons
    description: >-
      Manage IVMS101 Person records. This includes creation and retrieval of
      structured person data for compliance with FATF Travel Rule standards.
  - name: Chains
    description: Chains supported by Faraday
  - name: Tokens
    description: Tokens supported by Faraday
  - name: Providers
    description: Providers supported by Faraday
paths:
  /v1/tokens:
    get:
      tags:
        - Tokens
      summary: List tokens
      description: |

        Returns a list of tokens supported by Faraday.
      operationId: list_tokens
      responses:
        '200':
          description: All tokens
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/TokenMeta'
      security:
        - {}
components:
  schemas:
    TokenMeta:
      type: object
      required:
        - network
        - slug
        - label
        - symbol
        - exponent
        - kind
        - aliases
      properties:
        addr:
          type:
            - string
            - 'null'
          description: Primary address/mint (None for natives).
        aliases:
          type: array
          items:
            type: string
          description: >-
            Extra accepted inputs for parsing (symbols, legacy names, alternate
            mints).
        exponent:
          type: integer
          format: int32
          description: Base-10 exponent (USDC=6).
          minimum: 0
        kind:
          $ref: '#/components/schemas/TokenKind'
          description: Type on this chain.
        label:
          type: string
          description: Human label (UI).
        network:
          $ref: '#/components/schemas/Network'
        slug:
          type: string
          description: Canonical slug you expose on the wire (lowercase, e.g., "usdc").
        symbol:
          type: string
          description: >-
            Symbol typically fed to aggregators that want symbols (e.g.,
            "USDC").
    TokenKind:
      type: string
      description: What kind of asset this is on that network
      enum:
        - native
        - erc20
        - spl
    Network:
      type: string
      enum:
        - eth
        - sepolia
        - solana
        - oeth
        - solana-devnet
        - osmosis-1
        - arb1
        - pol
        - base
        - avax
        - bnb
        - neutron-1
        - celestia
        - opsep
        - fuji
        - amoy
        - basesep
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer

````