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

# Market tokens

Use this endpoint to list supported tokens (optionally filtered by `chainId`).

For guidance on discovery flows, see [Markets](/business/endpoint/markets).


## OpenAPI

````yaml get /v1/markets/tokens
openapi: 3.1.0
info:
  title: Fiet Trading API (Core)
  version: 0.1.0
  description: >
    Hosted control-plane API for the Fiet Interface.


    ## Non-custodial posture

    - This service **does not** sign transactions.

    - This service **does not** broadcast transactions.

    - This service has **no access** to customer funds or keys.


    ## Quote semantics

    `GET /v1/quote` returns **derived** values from live chain state and indexed
    markets.

    It does not create or persist a “quote entity”.
servers:
  - url: https://api.fiet.finance
    description: Production (example)
security:
  - basicAuth: []
tags:
  - name: Health
  - name: Markets
  - name: Quote
  - name: Swap
  - name: Payments
paths:
  /v1/markets/tokens:
    get:
      tags:
        - Markets
      summary: List supported tokens
      parameters:
        - name: chainId
          in: query
          required: false
          schema:
            $ref: '#/components/schemas/ChainId'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/MarketToken'
components:
  schemas:
    ChainId:
      type: integer
      format: uint64
      examples:
        - 1
    MarketToken:
      type: object
      required:
        - chainId
        - address
        - symbol
        - decimals
      properties:
        chainId:
          $ref: '#/components/schemas/ChainId'
        address:
          $ref: '#/components/schemas/EvmAddress'
        symbol:
          type: string
          examples:
            - USDC
        decimals:
          type: integer
          examples:
            - 6
    EvmAddress:
      type: string
      pattern: ^0x[a-fA-F0-9]{40}$
      examples:
        - '0x742d35Cc6634C0532925a3b844Bc9e7595f5fE4b'
  securitySchemes:
    basicAuth:
      type: http
      scheme: basic
      description: Basic Auth (assumed at gateway for MVP)

````