GET
/
catalogs
/
currencies
curl --request GET \
  --url http://localhost:3000/connect/v1/catalogs/currencies/ \
  --header 'Authorization: <api-key>'
{
  "count": 123,
  "next": "<string>",
  "previous": "<string>",
  "results": [
    {
      "id": "<string>",
      "name": "<string>",
      "code": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Query Parameters

A search term.

name
string
code
string
all
string
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
results
object[]
required
next
string | null
previous
string | null