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

# List Assets

> Returns a paginated list of assets (stocks/securities) available for trading. You can filter by category and search by symbol, name, or keywords. Results are ordered by priority, market cap, and ID.



## OpenAPI

````yaml GET /api/public/v1/assets
openapi: 3.0.3
info:
  title: Wallbit Public API
  description: >-
    Wallbit Public API allows developers to integrate Wallbit functionality into
    their applications. Access account balances, view transaction history, and
    execute trades programmatically using API Keys.
  version: 1.0.0
  contact:
    name: Wallbit API Support
    email: dev@wallbit.io
servers:
  - url: https://api.wallbit.io
    description: Production server
  - url: http://localhost
    description: Local development server
security:
  - apiKey: []
tags:
  - name: Balance
    description: Endpoints to retrieve account balances
  - name: Transactions
    description: Endpoints to retrieve transaction history
  - name: Trades
    description: Endpoints to execute trading operations
  - name: Fees
    description: >-
      Endpoints to retrieve fee configuration for the authenticated user (e.g.
      stock trading fees by subscription tier)
  - name: Account Details
    description: Endpoints to obtain bank account details
  - name: Wallets
    description: Endpoints to obtain wallet addresses
  - name: Rates
    description: Endpoints to retrieve fiat exchange rates from Wallbit
  - name: Assets
    description: Endpoints to query information about assets (stocks) and categories
  - name: Operations
    description: Endpoints for deposit and withdrawal investment operations
  - name: Cards
    description: Endpoints to block and unblock cards
  - name: API Key
    description: Endpoints to revoke the API key used for authentication
paths:
  /api/public/v1/assets:
    get:
      tags:
        - Assets
      summary: List available assets
      description: >-
        Returns a paginated list of assets (stocks/securities) available for
        trading. You can filter by category and search by symbol, name, or
        keywords. Results are ordered by priority, market cap, and ID.
      operationId: listAssets
      parameters:
        - name: category
          in: query
          description: Asset category
          schema:
            type: string
            enum:
              - MOST_POPULAR
              - ETF
              - DIVIDENDS
              - TECHNOLOGY
              - HEALTH
              - CONSUMER_GOODS
              - ENERGY_AND_WATER
              - FINANCE
              - REAL_ESTATE
              - TREASURY_BILLS
              - VIDEOGAMES
              - ARGENTINA_ADR
            example: TECHNOLOGY
        - name: search
          in: query
          description: Search by symbol, name or keywords
          schema:
            type: string
            maxLength: 100
            example: Apple
        - name: page
          in: query
          description: Page number
          schema:
            type: integer
            minimum: 1
            default: 1
            example: 1
        - name: limit
          in: query
          description: 'Assets per page (max: 50)'
          schema:
            type: integer
            minimum: 1
            maximum: 50
            default: 10
            example: 20
      responses:
        '200':
          description: Assets list retrieved successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/Asset'
                  pages:
                    type: integer
                    description: Total number of pages
                  current_page:
                    type: integer
                    description: Current page number
                  count:
                    type: integer
                    description: Total number of assets
              example:
                data:
                  - symbol: AAPL
                    name: Apple Inc.
                    price: 175.5
                    asset_type: Stock
                    exchange: NASDAQ
                    sector: Technology
                    market_cap_m: '2750000'
                    description: Apple Inc. designs, manufactures...
                    logo_url: https://static.atomicvest.com/AAPL.svg
                pages: 15
                current_page: 1
                count: 150
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          $ref: '#/components/responses/Forbidden'
        '422':
          $ref: '#/components/responses/ValidationError'
        '429':
          $ref: '#/components/responses/TooManyRequests'
      security:
        - apiKey: []
components:
  schemas:
    Asset:
      type: object
      properties:
        symbol:
          type: string
          description: Asset symbol
          example: AAPL
        name:
          type: string
          description: Asset name
          example: Apple Inc.
        price:
          type: number
          format: float
          description: Current price
          example: 175.5
        asset_type:
          type: string
          nullable: true
          description: Asset type
          example: Stock
        exchange:
          type: string
          nullable: true
          description: Exchange where it's traded
          example: NASDAQ
        sector:
          type: string
          nullable: true
          description: Sector
          example: Technology
        market_cap_m:
          type: string
          nullable: true
          description: Market capitalization in millions
          example: '2750000'
        description:
          type: string
          nullable: true
          description: Asset description in English
        description_es:
          type: string
          nullable: true
          description: Asset description in Spanish
        country:
          type: string
          nullable: true
          description: Country of origin
          example: United States
        ceo:
          type: string
          nullable: true
          description: CEO name
          example: Tim Cook
        employees:
          type: string
          nullable: true
          description: Number of employees
          example: '164000'
        logo_url:
          type: string
          description: Asset logo URL
          example: https://static.atomicvest.com/AAPL.svg
        dividend:
          type: object
          nullable: true
          properties:
            amount:
              type: number
              format: float
              nullable: true
              example: 0.24
            yield:
              type: number
              format: float
              nullable: true
              example: 0.52
            ex_date:
              type: string
              format: date
              nullable: true
              example: '2024-02-09'
            payment_date:
              type: string
              format: date
              nullable: true
              example: '2024-02-15'
    Error:
      type: object
      properties:
        message:
          type: string
          description: Error message
        error:
          type: string
          description: Error description
    ValidationError:
      type: object
      properties:
        message:
          type: string
          description: Error message
        errors:
          type: object
          description: Field-specific validation errors
          additionalProperties:
            type: array
            items:
              type: string
  responses:
    Unauthorized:
      description: Missing or invalid API Key
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
          examples:
            missing:
              summary: Missing API Key
              value:
                message: API Key required. Please provide X-API-Key header.
            invalid:
              summary: Invalid API Key
              value:
                message: Invalid or expired API Key.
    Forbidden:
      description: Insufficient permissions
      content:
        application/json:
          schema:
            type: object
            properties:
              message:
                type: string
              your_permissions:
                type: array
                items:
                  type: string
          example:
            message: 'Insufficient permissions. Required permission: read'
            your_permissions:
              - trade
    ValidationError:
      description: Validation failed
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ValidationError'
          example:
            message: The given data was invalid.
            errors:
              symbol:
                - The symbol field is required.
    TooManyRequests:
      description: Rate limit exceeded
      content:
        application/json:
          schema:
            type: object
            properties:
              message:
                type: string
              retry_after:
                type: integer
                description: Seconds until rate limit resets
          example:
            message: Too many requests. Please try again later.
            retry_after: 42
      headers:
        X-RateLimit-Limit:
          description: Total requests allowed per minute
          schema:
            type: integer
        X-RateLimit-Remaining:
          description: Requests remaining in current window
          schema:
            type: integer
        X-RateLimit-Reset:
          description: Unix timestamp when rate limit resets
          schema:
            type: integer
        Retry-After:
          description: Seconds to wait before retry
          schema:
            type: integer
  securitySchemes:
    apiKey:
      type: apiKey
      name: X-API-Key
      in: header
      description: >-
        API Key authentication. Obtain your API key from the Wallbit dashboard
        under Settings → API Keys.

````