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

# Список криптовалют

> Повертає список доступних криптовалют з мережами та лімітами



## OpenAPI

````yaml /APIs/crypto-cash-openapi-uk.json post /merchant/api/v1/crypto-currencies/list/
openapi: 3.1.0
info:
  title: CryptoCash Merchant API
  description: >-
    API для роботи з криптовалютними платежами. Усі запити потребують
    автентифікації через підпис. Тіло запиту містить: data (JSON-об'єкт у
    base64) та signature (SHA256(SECRET_KEY + data) у base64).
  version: 1.0.0
servers:
  - url: https://api.crypto-cash.world
    description: Production сервер
security: []
tags:
  - name: Balance
    description: Операції з балансом
  - name: Actions
    description: 'Дії: купівля, продаж, повернення'
  - name: Transactions
    description: Робота з транзакціями
  - name: Reference
    description: Довідкова інформація
externalDocs:
  description: Зовнішні курси валют
  url: https://rates.crypto-cash.world/api/v1/market/rates/export/json
paths:
  /merchant/api/v1/crypto-currencies/list/:
    post:
      tags:
        - Reference
      summary: Список криптовалют
      description: Повертає список доступних криптовалют з мережами та лімітами
      operationId: getCryptoCurrencies
      requestBody:
        required: true
        description: |-
          Параметри даних:
          - **publicKey** (обов'язковий) - Публічний ключ мерчанта
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SignedRequest'
        x-data-schema:
          $ref: '#/components/schemas/BalanceRequest'
      responses:
        '200':
          description: Успішна відповідь
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    type: integer
                    example: 200
                  data:
                    type: object
                    properties:
                      items:
                        type: array
                        items:
                          $ref: '#/components/schemas/CryptoCurrency'
        '400':
          description: Помилка запиту
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    SignedRequest:
      type: object
      required:
        - data
        - signature
      properties:
        data:
          type: string
          description: JSON-об'єкт з параметрами запиту, закодований у base64
        signature:
          type: string
          description: Підпис SHA256(SECRET_KEY + data), закодований у base64
    CryptoCurrency:
      type: object
      properties:
        currency:
          type: string
          description: Код валюти
          example: USDT
        networks:
          type: array
          items:
            $ref: '#/components/schemas/Network'
        tickers:
          type: array
          items:
            type: string
          description: Список тікерів
        limits:
          type: array
          items:
            $ref: '#/components/schemas/CurrencyLimit'
    Error:
      type: object
      properties:
        errors:
          type: array
          items:
            type: integer
          description: Список кодів помилок
      example:
        errors:
          - 1000
    Network:
      type: object
      properties:
        name:
          type: string
          description: Назва мережі
          example: TRC20
        isMemoRequired:
          type: boolean
          description: Чи потрібен memo
    CurrencyLimit:
      type: object
      properties:
        network:
          type: string
          description: Мережа
        ticker:
          type: string
          description: Тікер
        min_deposit:
          type: string
          description: Мінімальний депозит
        min_withdraw:
          type: string
          description: Мінімальне виведення
        network_fee:
          type: string
          description: Комісія мережі
        availability:
          type: boolean
          description: Доступність
        acquiring:
          type: boolean
          description: Доступний еквайринг
        withdrawal:
          type: boolean
          description: Доступне виведення

````