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

# List supported wallet chains

> Returns the stablecoin deposit routes currently available for USD settlement. Use this endpoint as the source of truth for chain names, route slugs, token standards, logos, explorers, and enabled deposit support.



## OpenAPI

````yaml /openapi/openapi.json get /partner/wallets/chains
openapi: 3.1.0
info:
  title: Stabyl API
  description: >-
    REST API for approved Stabyl accounts to automate exchange, wallet, and
    non-production simulation workflows.
  contact:
    name: Stabyl Support
    email: support@stabyl.com
  license:
    name: Proprietary
  version: 1.0.0
servers:
  - url: https://api.stabyl.com/v1
    description: Production
  - url: https://api-staging.stabyl.com/v1
    description: Staging
security: []
tags:
  - name: Exchange
    description: Trading market data and order management for account automation.
  - name: Wallets
    description: >-
      Supported routes, deposit destinations, balances, transactions, and saved
      recipients.
  - name: Webhooks
    description: >-
      Outbound event delivery configuration and eventually consistent delivery
      history. Verify Standard Webhooks webhook-id, webhook-timestamp, and
      webhook-signature headers against the unchanged raw request body before
      parsing JSON.
  - name: Simulation
    description: Non-production endpoints for testing integration behavior.
paths:
  /partner/wallets/chains:
    get:
      tags:
        - Wallets
      summary: List supported wallet chains
      description: >-
        Returns the stablecoin deposit routes currently available for USD
        settlement. Use this endpoint as the source of truth for chain names,
        route slugs, token standards, logos, explorers, and enabled deposit
        support.
      operationId: get_partner_wallets_chains
      responses:
        '200':
          description: Supported wallet chains
          content:
            application/json:
              schema:
                type: object
                required:
                  - status
                  - data
                properties:
                  data:
                    $ref: '#/components/schemas/WalletSupportedChainsResponse'
                  status:
                    type: string
                    enum:
                      - success
              example:
                data:
                  rails:
                    - code: USDC
                      decimals: 6
                      deposit_enabled: true
                      display_name: USD Coin
                      rail_type: stablecoin
                      routes:
                        - chain:
                            explorer_url: https://basescan.org/tx/{tx_hash}
                            logo: >-
                              https://www.base.org/_next/image?url=%2F_next%2Fstatic%2Fmedia%2Fpartner.c0800f8b.png&w=750&q=99
                            name: Base
                            slug: base
                            symbol: ETH
                            token_standard: ERC20
                          deposit_enabled: true
                          network: evm
                          settlement_rail: USDC
                          wallet_currency: USD
                          withdrawal_enabled: true
                      wallet_currency: USD
                      withdrawal_enabled: true
                status: success
        '400':
          description: Error response
          content:
            application/json:
              schema:
                type: object
                required:
                  - status
                  - error
                properties:
                  error:
                    type: object
                    required:
                      - code
                      - message
                    properties:
                      code:
                        type: string
                        example: VALIDATION_FAILED
                      message:
                        type: string
                        example: invalid request parameters
                  status:
                    type: string
                    enum:
                      - error
              example:
                error:
                  code: VALIDATION_FAILED
                  message: invalid request parameters
                status: error
      security: []
components:
  schemas:
    WalletSupportedChainsResponse:
      type: object
      description: Supported stablecoin settlement rails and blockchain routes.
      required:
        - rails
      properties:
        rails:
          type: array
          items:
            $ref: '#/components/schemas/WalletSettlementRailSupport'
    WalletSettlementRailSupport:
      type: object
      description: USD settlement rail and its enabled blockchain routes.
      required:
        - code
        - wallet_currency
        - rail_type
        - decimals
        - display_name
        - deposit_enabled
        - withdrawal_enabled
        - routes
      properties:
        code:
          type: string
          example: USDT
        decimals:
          type: integer
          format: int32
          example: 6
        deposit_enabled:
          type: boolean
        display_name:
          type: string
          example: Tether USD
        rail_type:
          type: string
          example: stablecoin
        routes:
          type: array
          items:
            $ref: '#/components/schemas/WalletChainSupport'
        wallet_currency:
          type: string
          example: USD
        withdrawal_enabled:
          type: boolean
    WalletChainSupport:
      type: object
      description: Route metadata for a supported chain under a stablecoin settlement rail.
      required:
        - network
        - chain
        - settlement_rail
        - wallet_currency
        - deposit_enabled
        - withdrawal_enabled
      properties:
        chain:
          $ref: '#/components/schemas/WalletChainMetadata'
          description: Chain metadata.
        deposit_enabled:
          type: boolean
        network:
          $ref: '#/components/schemas/WalletChain'
          description: Wallet network family (`evm`, `tron`, `solana`).
        settlement_rail:
          type: string
          example: USDT
        wallet_currency:
          type: string
          example: USD
        withdrawal_enabled:
          type: boolean
    WalletChainMetadata:
      type: object
      description: Display and explorer metadata for a blockchain route.
      required:
        - name
        - slug
        - symbol
        - logo
        - explorer_url
      properties:
        explorer_url:
          type: string
          description: Transaction explorer URL template with `{tx_hash}` placeholder.
          example: https://etherscan.io/tx/{tx_hash}
        logo:
          type: string
          description: Chain logo URL.
          example: https://s2.coinmarketcap.com/static/img/coins/256x256/1027.png
        name:
          type: string
          description: Human-readable chain name.
          example: Ethereum
        slug:
          type: string
          description: URL-friendly identifier.
          example: ethereum
        symbol:
          type: string
          description: Native chain symbol.
          example: ETH
        token_standard:
          type:
            - string
            - 'null'
          description: Token standard for stablecoin rails where applicable.
          example: ERC20
    WalletChain:
      type: string
      description: Supported blockchain route family for stablecoin deposits.
      enum:
        - evm
        - tron
        - solana

````