Skip to content
BolderBolder API
Esc
navigateopen⌘Jpreview

List exchange rates

Returns current USD exchange rates for supported currencies.

GET/shops/{shop_id}/exchange_rates
Authorization
AuthorizationBearer token (JWT) · headerrequired
Path parameters
shop_idintegerrequired
Responses
200Exchange rates
Request
curl -X GET "https://api.onbolder.com/v2/shops/1/exchange_rates" \
  -H "Authorization: Bearer YOUR_TOKEN"
Response
{
  "_class": [
    "results",
    "exchangeRates"
  ],
  "_embedded": {
    "items": [
      {
        "from": "USD",
        "to": "CLP",
        "rate": 950.5,
        "updated_at": "2024-06-15T00:00:00Z"
      },
      {
        "from": "USD",
        "to": "ARS",
        "rate": 890,
        "updated_at": "2024-06-15T00:00:00Z"
      }
    ]
  }
}