Currencies

Represents a type of currency by which a financial operation is declared. This object is used by the Subscriptions, Billing, Payments APIs and the Purchases application.

Currency object

See the complete list of currencies available in Piriod

List currencies

GET https://api.piriod.com/generals/currencies/

Lists currency objects. Learn more about pagination and filtering.

Query Parameters

{
  "count": 26,
  "next": null,
  "previous": null,
  "results": [
    {
      "id": "PLN",
      "conversion": null,
      "name": "Zloty polaco",
      "name_en": "Polish złoty",
      "default": true,
      "is_chargeable": true,
      "available": false,
      "rounded": false,
      "country": "PL"
    },
    ...
    ...
    ...
    {
      "id": "JPY",
      "conversion": null,
      "name": "Yen japones",
      "name_en": "Japanese yen",
      "default": true,
      "is_chargeable": true,
      "available": false,
      "rounded": true,
      "country": "JP"
    }
  ]
}

Last updated