> ## Documentation Index
> Fetch the complete documentation index at: https://whitebit-mintlify-fix-broken-links-1774829655.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Asset status list

> The endpoint retrieves the assets status.

<Note>
The API caches the response for 1 second
</Note>

<Warning>
Rate limit: 2000 requests/10 sec. See [Public API V4 overview](/public/http-v4/index) for rate limit details.
</Warning>


## Authentication

**None.** No authentication required.

## Error codes

The endpoint uses standard error codes. See [Error format](/api-reference/overview#error-format) for the response structure.


## OpenAPI

````yaml /openapi/public/http-v4.yaml GET /api/v4/public/assets
openapi: 3.0.3
info:
  title: Public HTTP API V4
  description: >
    WhiteBIT Public HTTP API V4 for market data and trading information.

    Base URL: https://whitebit.com

    All endpoints return time in Unix-time format.

    All endpoints return either a JSON object or array.

    Use HTTP method GET for API calls.

    Send parameters as query string when an endpoint requires them.


    <Warning>

    Rate limit: 2000 requests/10 sec for most endpoints (specific limits noted
    per endpoint).

    </Warning>
  version: 4.0.0
servers:
  - url: https://whitebit.com
    description: WhiteBIT Global Server
  - url: https://whitebit.eu
    description: WhiteBIT EU Server
security: []
tags:
  - name: Public API V4
    description: Public endpoints for market data, trading information, and platform status
paths:
  /api/v4/public/assets:
    get:
      tags:
        - Public API V4
      summary: Asset Status List
      description: >
        The endpoint retrieves the assets status.


        <Note>

        The API caches the response for 1 second

        </Note>


        <Warning>

        Rate limit: 2000 requests/10 sec. See [Public API V4
        overview](/public/http-v4/index) for rate limit details.

        </Warning>
      parameters: []
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
                additionalProperties:
                  $ref: '#/components/schemas/Asset'
              example:
                BTC:
                  name: Bitcoin
                  unified_cryptoasset_id: 1
                  can_withdraw: true
                  can_deposit: true
                  min_withdraw: '0.001'
                  max_withdraw: '2'
                  maker_fee: '0.1'
                  taker_fee: '0.1'
                  min_deposit: '0.0001'
                  max_deposit: '0'
                  currency_precision: 18
                  is_memo: false
                  memo:
                    deposit: false
                    withdraw: false
                  networks:
                    deposits:
                      - BTC
                    withdraws:
                      - BTC
                    default: BTC
                  limits:
                    deposit:
                      BTC:
                        min: '0.001'
                    withdraw:
                      BTC:
                        min: '0.002'
                  confirmations:
                    BTC: 2
                USDT:
                  name: Tether US
                  unified_cryptoasset_id: 825
                  can_withdraw: true
                  can_deposit: true
                  min_withdraw: '5'
                  max_withdraw: '0'
                  maker_fee: '0.1'
                  taker_fee: '0.1'
                  min_deposit: '0'
                  max_deposit: '0'
                  currency_precision: 6
                  is_memo: false
                  memo:
                    deposit: false
                    withdraw: false
                  networks:
                    deposits:
                      - ERC20
                      - TRC20
                      - OMNI
                      - BEP20
                    withdraws:
                      - ERC20
                      - TRC20
                      - OMNI
                      - BEP20
                    default: ERC20
                  limits:
                    deposit:
                      ERC20:
                        min: '5'
                        max: '1000'
                      TRC20:
                        min: '5'
                    withdraw:
                      ERC20:
                        min: '10'
                        max: '1000'
                      TRC20:
                        min: '10'
                  confirmations:
                    ERC20: 20
                    TRC20: 20
        default:
          description: Error response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorV4'
components:
  schemas:
    Asset:
      type: object
      properties:
        name:
          type: string
          description: Full name of cryptocurrency
          example: Bitcoin
        unified_cryptoasset_id:
          type: integer
          description: >-
            Unique ID of cryptocurrency assigned by Unified Cryptoasset ID, 0 if
            unknown
          example: 1
        can_withdraw:
          type: boolean
          description: Indicates withdrawal status (enabled or disabled)
          example: true
        can_deposit:
          type: boolean
          description: Indicates deposit status (enabled or disabled)
          example: true
        min_withdraw:
          type: string
          description: Minimum withdrawal amount for the asset
          example: '0.001'
        max_withdraw:
          type: string
          description: Maximum withdrawal amount for the asset
          example: '2'
        maker_fee:
          type: string
          description: Maker fee in percentage
          example: '0.1'
        taker_fee:
          type: string
          description: Taker fee in percentage
          example: '0.1'
        min_deposit:
          type: string
          description: Min deposit amount
          example: '0.0001'
        max_deposit:
          type: string
          description: Max deposit amount; omitted if no limit, 0 if unlimited
          example: '0'
        currency_precision:
          type: integer
          description: Max number of digits to the right of the decimal point
          example: 18
        is_memo:
          type: boolean
          description: Indicates whether the asset requires a memo address
          example: false
        memo:
          type: object
          description: >-
            Indicates whether the asset requires a memo for deposits and
            withdrawals
          properties:
            deposit:
              type: boolean
              example: false
            withdraw:
              type: boolean
              example: false
        networks:
          type: object
          description: Currency networks
          properties:
            deposits:
              type: array
              description: Networks available for depositing
              items:
                type: string
              example:
                - BTC
            withdraws:
              type: array
              description: Networks available for withdrawing
              items:
                type: string
              example:
                - BTC
            default:
              type: string
              description: Default network for depositing / withdrawing if available
              example: BTC
        limits:
          type: object
          description: Currency limits by each network
          properties:
            deposit:
              type: object
              description: Deposits limits
              additionalProperties:
                type: object
                properties:
                  min:
                    type: string
                    example: '0.001'
                  max:
                    type: string
                    example: '1000'
            withdraw:
              type: object
              description: Withdraws limits
              additionalProperties:
                type: object
                properties:
                  min:
                    type: string
                    example: '0.002'
                  max:
                    type: string
                    example: '1000'
        confirmations:
          type: object
          description: Deposit confirmations count mapped by network
          additionalProperties:
            type: integer
          example:
            BTC: 2
        providers:
          type: object
          description: Fiat currency providers
          properties:
            deposits:
              type: array
              items:
                type: string
              example:
                - VISAMASTER
                - ADVCASH
            withdraws:
              type: array
              items:
                type: string
              example:
                - VISAMASTER
                - GEOPAY
    ErrorV4:
      type: object
      properties:
        success:
          type: boolean
          example: false
        message:
          type: string
          description: Error message
          example: ERROR MESSAGE
        params:
          type: array
          items:
            type: string
          example: []

````