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

# Currencies

> Lists the active currencies available in the platform.

---

**Authorization**

- Requires a valid API key.
- Required API-key permission(s):
  - General Data (Read)



## OpenAPI

````yaml get /trade/currencies
openapi: 3.0.0
info:
  title: Ripio Gateway
  description: Ripio API - Services documentation.
  version: 0.1.0
  x-logo:
    url: https://cwstatic.nyc3.digitaloceanspaces.com/1996/bitcointrade.png
servers:
  - url: https://api.ripio.com
    description: Production environment
security: []
paths:
  /trade/currencies:
    get:
      tags:
        - Ripio Trade
      summary: General endpoints - Currencies
      description: |-
        Lists the active currencies available in the platform.

        ---

        **Authorization**

        - Requires a valid API key.
        - Required API-key permission(s):
          - General Data (Read)
      parameters:
        - in: query
          name: currency_code
          required: false
          description: Currency code
          schema:
            type: string
        - in: query
          name: countries
          required: false
          description: Countries (One or many, use "," to separate)
          schema:
            example: BR,AR
            type: string
        - in: header
          name: authorization
          required: true
          description: The API key as a string.
          schema:
            type: string
        - in: header
          name: signature
          required: true
          description: >-
            See the [Generating
            Signature](/static/api/authentication#generating-signature) section
            for more details.
          schema:
            type: string
        - in: header
          name: timestamp
          required: true
          description: >-
            A timestamp in milliseconds. See the [Timestamp
            Security](/static/api/authentication#timestamp-security) section for
            more details.
          schema:
            type: number
        - in: header
          name: timstamp-tolerance
          required: false
          description: >-
            An additional, non-required parameter, that you can send to specify
            the number of milliseconds after the timestamp for the request to be
            valid. See the [Timestamp
            Security](/static/api/authentication#timestamp-security) section for
            more details.
          schema:
            type: number
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                description: Ok
                properties:
                  data:
                    items:
                      properties:
                        active:
                          description: Whether the currency is currently active for trading
                          type: boolean
                        can_deposit:
                          description: Whether deposits are enabled for this currency
                          type: boolean
                        can_withdraw:
                          description: Whether withdrawals are enabled for this currency
                          type: boolean
                        code:
                          description: Currency code
                          type: string
                          example: BTC
                        id:
                          description: Currency id
                          type: string
                        min_withdraw_amount:
                          description: Minimum withdrawal amount
                          type: number
                        name:
                          description: Currency name
                          type: string
                        needs_block_id_for_tx_sync:
                          description: >-
                            Whether the currency requires a block ID for
                            transaction synchronization
                          type: boolean
                        networks:
                          description: >-
                            Supported networks for the currency (undefined for
                            fiduciary currency)
                          items:
                            properties:
                              code:
                                description: Network code
                                type: string
                              memo:
                                properties:
                                  deposit:
                                    description: >-
                                      Flag that indicates if the network has
                                      memo for deposit
                                    type: boolean
                                  withdrawal:
                                    description: >-
                                      Flag that indicates if the network has
                                      memo for withdrawal
                                    type: boolean
                                required:
                                  - deposit
                                  - withdrawal
                                type: object
                              tag:
                                properties:
                                  deposit:
                                    description: >-
                                      Flag that indicates if the network has tag
                                      for deposit
                                    type: boolean
                                  withdrawal:
                                    description: >-
                                      Flag that indicates if the network has tag
                                      for withdrawal
                                    type: boolean
                                required:
                                  - deposit
                                  - withdrawal
                                type: object
                            required:
                              - code
                              - memo
                              - tag
                            type: object
                          type: array
                        precision:
                          description: Currency decimal places
                          type: number
                        decimal_places:
                          description: Number of decimal places for this currency
                          type: number
                        logo:
                          properties:
                            svg:
                              description: Currency svg logo
                              type: string
                          required:
                            - svg
                          type: object
                        countries:
                          description: Available countries
                          items:
                            type: string
                          type: array
                      required:
                        - active
                        - can_deposit
                        - can_withdraw
                        - code
                        - id
                        - min_withdraw_amount
                        - name
                        - needs_block_id_for_tx_sync
                        - precision
                        - decimal_places
                        - logo
                        - countries
                      type: object
                      example:
                        active: true
                        can_deposit: true
                        can_withdraw: true
                        code: BTC
                        id: e7a079d8-828d-42c8-bf48-8ee3ac1862d1
                        min_withdraw_amount: 0.001
                        name: Bitcoin
                        needs_block_id_for_tx_sync: true
                        networks:
                          - code: bitcoin
                            memo:
                              deposit: false
                              withdrawal: false
                            tag:
                              deposit: false
                              withdrawal: false
                        precision: 8
                        decimal_places: 8
                        countries:
                          - BR
                          - AR
                        logo:
                          svg: https://cryptocurrency-logos.ripio.com/svg/btc.svg
                    type: array
                  error_code:
                    type: number
                    example: null
                  message:
                    type: string
                    example: null
                required:
                  - data
                  - error_code
                  - message
                type: object

````