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

# List assets



## OpenAPI

````yaml /coins/api-reference/openapi.json get /assets
openapi: 3.1.0
info:
  contact:
    email: support@daya.co
    name: API Support
  description: >-
    Public developer API for the Coins by Daya product. X-API-Key authenticated.
    Market data, portfolio, balances, transactions, order placement, crypto and
    fiat withdrawals. All responses use the standard envelope: { success,
    message?, data?, error?, timestamp }.
  title: Daya Coins Public API
  version: 1.0.0
servers:
  - url: https://api.daya.co/coins/v1
    description: Production server
security:
  - ApiKeyAuth: []
paths:
  /assets:
    get:
      tags:
        - coins-market-data
      summary: List assets
      operationId: getAssets
      parameters:
        - description: Search term matched against symbol or name
          in: query
          name: q
          schema:
            type: string
        - description: 'Ranking: marketcap|gainers|losers|volume|new'
          in: query
          name: sort
          schema:
            type: string
        - description: Max rows after sorting (max 100)
          in: query
          name: limit
          schema:
            type: integer
      responses:
        '200':
          content:
            application/json:
              schema:
                allOf:
                  - $ref: >-
                      #/components/schemas/github_com_dayacoins_daya-coins-service_pkg_response.Envelope
                  - properties:
                      data:
                        $ref: >-
                          #/components/schemas/internal_publicapi_v1.PublicCatalog
                    type: object
          description: Asset catalog
        '400':
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/github_com_dayacoins_daya-coins-service_pkg_response.Envelope
          description: Invalid sort
        '500':
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/github_com_dayacoins_daya-coins-service_pkg_response.Envelope
          description: Failed to load catalog
components:
  schemas:
    github_com_dayacoins_daya-coins-service_pkg_response.Envelope:
      properties:
        data: {}
        error:
          $ref: >-
            #/components/schemas/github_com_dayacoins_daya-coins-service_pkg_response.ErrorData
        message:
          description: Message is an optional banner/toast string.
          type: string
        success:
          type: boolean
        timestamp:
          type: string
      type: object
    internal_publicapi_v1.PublicCatalog:
      properties:
        assets:
          items:
            $ref: '#/components/schemas/internal_publicapi_v1.PublicAsset'
          type: array
      type: object
    github_com_dayacoins_daya-coins-service_pkg_response.ErrorData:
      properties:
        code:
          type: string
        details: {}
        fields:
          additionalProperties:
            type: string
          type: object
        message:
          type: string
      type: object
    internal_publicapi_v1.PublicAsset:
      properties:
        buy_enabled:
          example: true
          type: boolean
        credit_collateral_eligible:
          example: false
          type: boolean
          description: Whether the asset is marked as eligible collateral
        decimals:
          example: 8
          type: integer
        deposit_enabled:
          example: true
          type: boolean
        icon_url:
          example: https://assets.daya.co/icons/btc.png
          type: string
        is_stablecoin:
          example: false
          type: boolean
        market_cap_usd:
          example: '1280000000000.00'
          type: string
        name:
          example: Bitcoin
          type: string
        price:
          $ref: '#/components/schemas/internal_publicapi_v1.PublicCatalogPrice'
        sell_enabled:
          example: true
          type: boolean
        stats_24h:
          $ref: '#/components/schemas/internal_publicapi_v1.PublicStats'
        supported_chains:
          items:
            $ref: '#/components/schemas/internal_publicapi_v1.PublicChainSupport'
          type: array
        symbol:
          example: BTC
          type: string
        verified:
          example: true
          type: boolean
        withdrawal_enabled:
          example: true
          type: boolean
      type: object
    internal_publicapi_v1.PublicCatalogPrice:
      properties:
        fetched_at:
          example: '2026-01-15T10:30:00Z'
          type: string
        quote_asset:
          example: USD
          type: string
        value:
          example: '65000.00'
          type: string
      type: object
    internal_publicapi_v1.PublicStats:
      properties:
        change_abs:
          example: '1200.00'
          type: string
        change_pct:
          example: '1.88'
          type: string
        high:
          example: '65500.00'
          type: string
        low:
          example: '63200.00'
          type: string
        open:
          example: '63800.00'
          type: string
        volume_base:
          example: '1250.50'
          type: string
        volume_quote:
          example: '80658500.00'
          type: string
      type: object
    internal_publicapi_v1.PublicChainSupport:
      properties:
        chain:
          example: ethereum
          type: string
        chain_display_name:
          example: Ethereum
          type: string
        chain_icon_url:
          example: https://assets.daya.co/icons/ethereum.png
          type: string
        deposit_enabled:
          example: true
          type: boolean
        min_confirmations:
          example: 12
          type: integer
        min_deposit_amount:
          example: '1.00'
          type: string
        withdrawal_enabled:
          example: true
          type: boolean
      type: object
  securitySchemes:
    ApiKeyAuth:
      description: >-
        Your Daya API key, sent in the X-API-Key header. Issue and scope keys in
        the Daya dashboard.
      in: header
      name: X-API-Key
      type: apiKey

````