v32

latestOpenAPI 3.1.0raw.githubusercontent.com2026-05-151,1412,2144.5 MB
currencies

List Currencies

Retrieve a list of Currency objects.

You can use query parameters to filter, sort, and paginate the results.

get/billing/org/v1/currencies

Query parameters

currency_char_codestring[]

Filter by currency char code (e.g. USD, EUR). Can be multiple.

Returns currencies with the specified char code.

Examples:

  • &currency_char_code=USD
  • &currency_char_codeEUR&currency_char_codeUSD

Available values:

  • EUR - Euro
  • USD - US Dollar
currency_idstring[]

Filter by currency ID. Can be multiple.

Returns currencies with the specified ID.

Examples:

  • &currency_id=1
  • &currency_id=1&currency_id=2

Available values:

  • 1 - US Dollar
  • 2 - Euro
limitinteger

Number of results to return per page. Maximum is 100.

name_enstring
offsetinteger

The initial index from which to return the results.

orderingstring[]

Ordering of the results.

Default sort order is ascending. Put - before value for descending sort order: -id.

For sorting by multiple parameters write them as comma separated string: -client_id,id.

  • char_code - Char code
  • -char_code - Char code (descending)
  • number_code - Number code
  • -number_code - Number code (descending)
  • name_en - Name en
  • -name_en - Name en (descending)

Response

Request successful.

countinteger required
nextstring uri nullable
previousstring uri nullable

Example response

{
  "count": 123,
  "next": "http://api.example.org/accounts/?offset=400&limit=100",
  "previous": "http://api.example.org/accounts/?offset=200&limit=100"
}