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
{
"id": "USD",
"conversion": null,
"name": "Dólar Estadounidense",
"name_en": "American Dollar",
"default": true,
"is_chargeable": true,
"available": true,
"rounded": false,
"country": "US"
}List currencies
Query Parameters
Name
Type
Description
{
"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
Was this helpful?
