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

# List or resolve supported assets

> Returns active assets. Without symbol or name, returns the full list. With symbol or name, resolves matching candidates in deterministic order.



## OpenAPI

````yaml /openapi.json get /api/assets
openapi: 3.1.0
info:
  title: WalletSuite REST API
  description: >-
    Multi-chain wallet operations, balances, prices, and transaction lifecycle
    as a REST API.
  contact:
    name: WalletSuite
    url: https://walletsuite.io
  version: prod
servers:
  - url: https://api.walletsuite.io
    description: WalletSuite API
security:
  - ApiKeyAuth: []
tags:
  - name: Transactions
    description: >-
      Get transaction history by address, check live transaction status, and
      send signed transactions.
  - name: Fees
    description: Fee estimation endpoints
  - name: Balances
    description: Fetch balances on any supported chain (Ethereum, Tron).
  - name: Assets
    description: >-
      List supported blockchain assets from the database loaded at startup from
      bundled resources
  - name: Asset Status
    description: Asset enablement and restrictions.
  - name: Prices
    description: Fiat prices for symbols and contract addresses
  - name: Swaps
    description: Swap quote, route, and transaction building.
  - name: Approvals
    description: Allowance, approval tx data, and approval status.
  - name: NFTs
    description: NFT collections, tokens, owners, and transfer building.
  - name: Staking
    description: Native staking APR, validators, positions, and transaction building.
  - name: Name Service
    description: Name resolution and reverse resolution.
  - name: Chains
    description: Chain registry and chain capabilities.
  - name: Chain Specific
    description: Chain specific endpoints consumable by SDK.
  - name: Blocks
    description: View most recently indexed block information.
  - name: Info
    description: General information and summary counts.
paths:
  /api/assets:
    get:
      tags:
        - Assets
      summary: List or resolve supported assets
      description: >-
        Returns active assets. Without symbol or name, returns the full list.
        With symbol or name, resolves matching candidates in deterministic
        order.
      operationId: list_1
      parameters:
        - name: chain
          in: query
          description: Blockchain identifier, default ethereum
          required: false
          schema:
            type: string
            default: ethereum
          example: ethereum
        - name: stablecoinOnly
          in: query
          description: Only return stablecoins
          required: false
          schema:
            type: boolean
            default: false
          example: false
        - name: symbol
          in: query
          description: Filter by token symbol (mutually exclusive with name)
          required: false
          schema:
            type: string
        - name: name
          in: query
          description: Filter by token name (mutually exclusive with symbol)
          required: false
          schema:
            type: string
        - name: limit
          in: query
          description: Maximum results in resolve mode (1-10, default 10)
          required: false
          schema:
            type: integer
            format: int32
            default: 10
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ApiResponseListTokenInfo'
components:
  schemas:
    ApiResponseListTokenInfo:
      type: object
      properties:
        ok:
          type: boolean
        code:
          type: string
        message:
          type: string
        data:
          type: array
          items:
            $ref: '#/components/schemas/TokenInfo'
      required:
        - code
        - message
        - ok
    TokenInfo:
      type: object
      properties:
        id:
          type: string
        name:
          type: string
        symbol:
          type: string
        type:
          type: string
        decimals:
          type: integer
          format: int32
        description:
          type: string
        website:
          type: string
        explorer:
          type: string
        logo:
          type: string
      required:
        - decimals
        - id
        - logo
        - name
        - symbol
        - type
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      description: API key provided by WalletSuite team
      name: x-api-key
      in: header

````