v1

latestOpenAPI 3.1.0Copyright Pismo2026-07-247702,7523.1 MB
Exchange rates

Get exchange rates

Returns exchange rates with paging and filter options

get/v1/exchange-rates

Query parameters

beginCreatedAtstring required

Start date filter, format = yyyy-mm-dd

endCreatedAtstring required

End date filter, format = yyyy-mm-dd. 30 days maximum between beginCreatedAt and endCreatedAt.

perPageinteger required

Records per page - 100 records maximum.

pageinteger required

Current page number.

programIdinteger

Pismo program ID filter

Headers

Authorizationstring required

Access token, not an account-specific token. Tokens can expire quickly, which can result in an <b>401 Unauthorized</b> message

Response

OK

last_pageboolean

Is this the last page flag

Example response

[
  {
    "exchange_rates": [
      {
        "exchange_rate_id": 1845,
        "origin": "032",
        "destination": "968",
        "program_id": 1010,
        "conversion_rate": 4.8,
        "spread": 1.05,
        "exchange_rate": 4.8,
        "created_date": "2022-04-25 17:55:02",
        "date": "2022-04-25",
        "hour": "18:25:43Z",
        "apply_fees_without_spread": true
      }
    ]
  }
]