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

# List all currencies

> Retrieve all supported currencies. Required scope: `currency:read`.



## OpenAPI

````yaml /api-reference/currency/list-openapi.json get /api/external/currency
openapi: 3.1.0
info:
  title: Blaaiz Platform API - List Currencies
  version: 1.0.0
  description: Retrieve all supported currencies
servers:
  - url: https://api-prod.blaaiz.com
  - url: https://api-dev.blaaiz.com
security: []
tags:
  - name: Currency
paths:
  /api/external/currency:
    get:
      tags:
        - Currency
      summary: List all currencies
      description: 'Retrieve all supported currencies. Required scope: `currency:read`.'
      responses:
        '200':
          description: Currencies retrieved successfully
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Currency'
              example:
                - id: currency_001
                  code: NGN
                  name: Nigerian Naira
                  active: true
                - id: currency_002
                  code: CAD
                  name: Canadian Dollar
                  active: true
                - id: currency_003
                  code: USD
                  name: United States Dollar
                  active: true
                - id: currency_004
                  code: EUR
                  name: Euro
                  active: true
                - id: currency_005
                  code: GBP
                  name: British Pound
                  active: true
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
              example:
                message: Invalid or missing access token
      security:
        - oauth2ClientCredentials:
            - currency:read
components:
  schemas:
    Currency:
      type: object
      properties:
        id:
          type: string
          description: Unique identifier for the currency
        code:
          type: string
          description: Currency code (e.g., NGN, CAD, USD, EUR, GBP)
        name:
          type: string
          description: Full name of the currency
        active:
          type: boolean
          description: Indicates if the currency is active
      required:
        - id
        - code
        - name
        - active
    Error:
      type: object
      properties:
        message:
          type: string
      required:
        - message
  securitySchemes:
    oauth2ClientCredentials:
      type: oauth2
      description: >-
        Use your OAuth client credentials to obtain a short-lived Bearer token
        from POST /oauth/token.
      flows:
        clientCredentials:
          tokenUrl: /oauth/token
          scopes:
            currency:read: Read supported currencies.

````