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

# Get Supported Currencies

> Retrieves the list of currencies supported on the platform.

Retrieve the list of currencies supported on the Rolla platform.

## Example Request

```bash theme={null}
curl -X GET "https://api.rolla.xyz/api/v1/external/wallet/supported-currencies" \
  -H "X-API-Key: your_api_key_here"
```

## Example Response

```json theme={null}
{
  "status": 200,
  "success": true,
  "message": "Supported currencies retrieved successfully",
  "data": {
    "currencies": [
      {
        "id": "ec215945-2f96-4199-8908-202796cc60c6",
        "code": "NGN",
        "name": "Nigerian Naira",
        "symbol": "₦",
        "status": "active"
      },
      {
        "id": "d9628547-2973-4e03-bcb9-ea141c65b727",
        "code": "USD",
        "name": "US Dollar",
        "symbol": "$",
        "status": "active"
      },
      {
        "id": "99a9df9b-7c1c-40ba-81a5-c6ac752c0904",
        "code": "USDC",
        "name": "USD Coin",
        "symbol": "$",
        "status": "active"
      },
      {
        "id": "07114127-c2d7-4022-b978-42eafdc433e6",
        "code": "USDT",
        "name": "Tether",
        "symbol": "$",
        "status": "active"
      },
      {
        "id": "e9c1b4cf-efe6-489d-b1ed-7eb89dfd23dd",
        "code": "XAF",
        "name": "Central African CFA Franc",
        "symbol": "FCFA",
        "status": "active"
      }
    ]
  }
}
```

<Note>
  Store this list locally and refresh periodically. The supported currencies rarely change but new ones may be added over time.
</Note>


## OpenAPI

````yaml GET /wallet/supported-currencies
openapi: 3.1.0
info:
  title: Rolla Developer API
  description: >-
    API for programmatic transaction management on the Rolla platform. Monetary
    `amount` fields use the smallest unit of the referenced currency unless an
    endpoint says otherwise (e.g. NGN = kobo, USD = cents, where **100 cents =
    USD 1.00**).
  version: 1.0.0
servers:
  - url: https://api.rolla.xyz/api/v1/external
    description: Production server
security:
  - apiKeyAuth: []
paths:
  /wallet/supported-currencies:
    get:
      summary: Get Supported Currencies
      description: Retrieves the list of currencies supported on the platform.
      operationId: getSupportedCurrencies
      responses:
        '200':
          description: Supported currencies retrieved successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: integer
                    example: 200
                  success:
                    type: boolean
                    example: true
                  message:
                    type: string
                    example: Supported currencies retrieved successfully
                  data:
                    type: object
                    properties:
                      currencies:
                        type: array
                        items:
                          type: object
                          properties:
                            id:
                              type: string
                              format: uuid
                            code:
                              type: string
                              example: NGN
                            name:
                              type: string
                              example: Nigerian Naira
                            symbol:
                              type: string
                              example: ₦
                            status:
                              type: string
                              example: active
        '401':
          description: Unauthorized - Invalid or missing API key
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    Error:
      type: object
      properties:
        success:
          type: boolean
          example: false
        message:
          type: string
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key
      description: Your Rolla API key

````