Quote

Quote the current bid and ask for a currency pair and size.

Paste this query to the GraphQL Playground

{
  quote(
    input: { fromCurrency: AUD, toCurrency: USD, size: 10000, currency: AUD }
  ) {
    bid
    ask
    symbol
    timestamp
    inverted
  }
}

Last updated