> ## 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 Blockchains

> Returns every chain the catalogue knows about, each with its embedded
token and DEX definitions.



## OpenAPI

````yaml /api-reference/openapi.json get /blockchains
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:
    get:
      tags:
        - catalogue
      summary: Get All Blockchains
      description: |-
        Returns every chain the catalogue knows about, each with its embedded
        token and DEX definitions.
      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.Chain'
        '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.Chain:
      type: object
      properties:
        blockChainLogo:
          type: string
        blockExplorer:
          type: string
        chainId:
          type: integer
        dex:
          type: array
          items:
            $ref: '#/components/schemas/uatu.Dex'
        ecosystem:
          type: string
        name:
          type: string
        nativeToken:
          type: string
        rpcUrl:
          type: string
        slug:
          type: string
        symbol:
          type: string
        tokens:
          type: array
          items:
            $ref: '#/components/schemas/uatu.Token'
    uatu.Dex:
      type: object
      properties:
        name:
          type: string
        permit2Address:
          type: string
        settlementAddress:
          type: string
        slug:
          type: string
        universalRouterAddress:
          type: string
        v2FactoryAddress:
          type: string
        v2RouterAddress:
          type: string
        v3FactoryAddress:
          type: string
        v3QuoterAddress:
          type: string
        v3RouterAddress:
          type: string
        version:
          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

````