# List available currencies

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /v1/currencies:
    get:
      summary: List available currencies
      deprecated: false
      description: ''
      operationId: getCurrencies
      tags:
        - REST API/Endpoints/Currencies
        - Currencies
      parameters:
        - name: id
          in: query
          description: ''
          required: false
          example: b88b8466-efe3-11eb-b56f-0691764446a7
          schema:
            type: string
            format: uuid
      responses:
        '200':
          description: List of fiat currencies
          content:
            '*/*':
              schema:
                properties:
                  data:
                    type: array
                    items:
                      properties:
                        id:
                          type: string
                          format: uuid
                        symbol:
                          type: string
                        name:
                          type: string
                      x-apidog-orders:
                        - id
                        - symbol
                        - name
                      type: object
                x-apidog-orders:
                  - data
                type: object
          headers: {}
          x-apidog-name: OK
        '400':
          description: Invalid query parameters
          content:
            '*/*':
              schema:
                type: object
                properties:
                  error:
                    type: object
                    properties:
                      code:
                        type: string
                    x-apidog-orders:
                      - code
                x-apidog-orders:
                  - error
          headers: {}
          x-apidog-name: ''
        '500':
          description: Internal server error
          content:
            '*/*':
              schema:
                type: object
                properties:
                  error:
                    type: object
                    properties:
                      code:
                        type: string
                    x-apidog-orders:
                      - code
                x-apidog-orders:
                  - error
          headers: {}
          x-apidog-name: ''
      security: []
      x-apidog-folder: REST API/Endpoints/Currencies
      x-apidog-status: released
      x-run-in-apidog: https://app.eu.apidog.com/web/project/365298/apis/api-4375771-run
components:
  schemas: {}
  securitySchemes:
    x-api-key:
      type: apikey
      name: x-api-key
      in: header
servers:
  - url: https://api.public.bitpanda.com
    description: Production
security: []

```