Loan orders fetcher

[apis/poloniex/public/Loan orders fetcher]


Returns the list of loan offers and demands for a given currency, specified by the "currency" GET parameter. https://docs.poloniex.com/#returnloanorders


Keywords: currency, loan order, query, fetch, retrieve, list, offers, demands

Input ports

  • query: {"currency": string}

Output ports

  • data:

    {
      "offers": {
        "rate": string,
        "amount": string,
        "rangeMin": number,
        "rangeMax": number
      }[],
      "demands": {
        "rate": string,
        "amount": string,
        "rangeMin": number,
        "rangeMax": number
      }[]
    }
  • response:

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

Last updated