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

# Get All Tokens

> Returns the known tokens. Omit chainId to list tokens across every chain.



## OpenAPI

````yaml /api-reference/openapi.json get /blockchains/tokens
openapi: 3.0.0
info:
  description: |-
    DEX aggregation and swap-quote API for EVM chains.
    Maintains a catalogue of blockchains, tokens, DEXes and liquidity
    pools, and serves executable swap quotes built from on-chain AMM data.
  title: uatu API
  contact: {}
  version: 0.1.0
servers:
  - url: https://api.uatu.dev
    description: Hosted API
  - url: http://localhost:8080
    description: Self-hosted instance (set PORT in your environment)
security: []
tags:
  - name: quotes
    description: Price a swap and get the calldata needed to execute it.
  - name: catalogue
    description: Discover the chains, tokens, DEXes and pools uatu knows about.
paths:
  /blockchains/tokens:
    get:
      tags:
        - catalogue
      summary: Get All Tokens
      description: >-
        Returns the known tokens. Omit chainId to list tokens across every
        chain.
      parameters:
        - description: restrict results to this EVM chain ID
          name: chainId
          in: query
          schema:
            type: integer
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                allOf:
                  - $ref: '#/components/schemas/server.APIResponse'
                  - type: object
                    properties:
                      data:
                        type: array
                        items:
                          $ref: '#/components/schemas/uatu.Token'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/server.APIResponse'
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/server.APIResponse'
components:
  schemas:
    server.APIResponse:
      type: object
      required:
        - message
      properties:
        code:
          type: integer
        data: {}
        message:
          type: string
    uatu.Token:
      type: object
      properties:
        address:
          type: string
        blockchainId:
          type: integer
        decimals:
          type: integer
        logo:
          type: string
        name:
          type: string
        slug:
          type: string
        symbol:
          type: string

````