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

# Get Currencies

> Retrieves a list of all available currencies.

> `GET` /platform/api/currencies

### Request Parameters

None

***

### Response Parameters

JSON Array of strings

```json Example theme={null}
[
  {
    "name": "UER",
    "currencyGroup": {
      "id": 1,
      "name": "Currency group 1"
    }
  },
  {
    "name": "USD",
    "currencyGroup": {
      "id": 1,
      "name": "Currency group 1"
    }
  },
  {
    "name": "TRY",
    "currencyGroup": {
      "id": 6,
      "name": "Currency group 20"
    }
  }
]
```

<ResponseExample>
  ```http Request theme={null}
  GET /platform/api/currencies
  ```

  ```json Response 200 theme={null}
  [
      {
          "name": "UER",
          "currencyGroup": {
              "id": 1,
              "name": "Currency group 1"
          }
      },
      {
          "name": "USD",
          "currencyGroup": {
              "id": 1,
              "name": "Currency group 1"
          }
      },
      {
          "name": "TRY",
          "currencyGroup": {
              "id": 6,
              "name": "Currency group 20"
          }
      }
  ]
  ```
</ResponseExample>
