Query conversions

You can query all your past conversions

Retrieving all your conversions

{
  conversions {
    id
    fromCurrency
    toCurrency
    rate
    # there are many other properties
  }
}

Retrieving some of your conversions

{
  # there are more query parameters available, see the API schema
  conversions(input: { statuses: CONVERTED, toCurrencies: [EUR USD] }) {
    id
    fromCurrency
    toCurrency
    # there are many other properties
  }
}

Retrieving a single conversion

{
  # there are more query parameters available, see the API schema
  conversion(id: "6b04c62ec0bf606bf216ae21") {
    status
    createdAt
    fromAmount
    toAmount
    # there are many other properties
  }
}

Last updated