Skip to main content
GET
/
partner
/
public
/
currencies
List currencies available in the branch
curl --request GET \
  --url https://api.example.com/api/v1/partner/public/currencies \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": 1,
    "name": "US Dollar",
    "ticker": "USD",
    "image": {
      "id": "cbcfa8b8-3a25-4adb-a9c6-e325f0d0f3ae",
      "path": "/uploads/usd.png"
    }
  }
]

Authorizations

Authorization
string
header
required

Partner API key. Format: sk_branch_<32chars>, sk_personal_<32chars>, or pk_<32chars> (public, read-only)

Response

List of currencies

id
integer
Example:

1

name
string
Example:

"US Dollar"

ticker
string
Example:

"USD"

image
object