Trade history fetcher

[apis/poloniex/public/Trade history fetcher]


Returns the past 200 trades for a given market, or up to 1,000 trades between a range specified in UNIX timestamps by the "start" and "end" GET parameters. https://docs.poloniex.com/#returntradehistory-public


Keywords: history, historical, trade, currency, pair, query, fetch, retrieve

Input ports

  • query:

    {"currencyPair": string, optional "start": number, optional "end": number}

Output ports

  • data:

    {
      "globalTradeID": number,
      "tradeID": number,
      "date": string,
      "type": string,
      "rate": string,
      "amount": string,
      "total": string,
      "orderNumber": number
    }[]
  • response:

    {"status": number, "headers": {string: any}, "body": string}
  • error: {"error": string}

Last updated