Skip to main content
GET
/
api
/
currency
Retrieve a list of currencies
curl --request GET \
  --url https://api.example.com/api/currency \
  --header 'Authorization: Bearer <token>'
{
  "count": 123,
  "results": [
    {
      "currency": "<string>",
      "alphabetic_code": "<string>",
      "active_indicator": true,
      "numeric_code": "<string>"
    }
  ],
  "next": "http://api.example.org/accounts/?offset=400&limit=100",
  "previous": "http://api.example.org/accounts/?offset=200&limit=100"
}

Authorizations

Authorization
string
header
required

JWT token obtained from AWS Cognito or custom authentication service

Query Parameters

active_indicator
boolean
limit
integer

Number of results to return per page.

offset
integer

The initial index from which to return the results.

Response

200 - application/json
count
integer
required
Example:

123

results
object[]
required
next
string<uri> | null
Example:

"http://api.example.org/accounts/?offset=400&limit=100"

previous
string<uri> | null
Example:

"http://api.example.org/accounts/?offset=200&limit=100"