GET v2/botapi/marketpairs

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

PairResponseModel
NameDescriptionTypeAdditional information
Buy

Collection of Detail

None.

Sell

Collection of Detail

None.

Response Formats

application/json, text/json

Sample:
{
  "Buy": [
    {
      "currencyFrom": "sample string 1",
      "currencyTo": "sample string 2"
    },
    {
      "currencyFrom": "sample string 1",
      "currencyTo": "sample string 2"
    }
  ],
  "Sell": [
    {
      "currencyFrom": "sample string 1",
      "currencyTo": "sample string 2"
    },
    {
      "currencyFrom": "sample string 1",
      "currencyTo": "sample string 2"
    }
  ]
}

text/xml

Sample:
<PairResponseModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Exchange.PIAV2.Models.Account.Exchange">
  <Buy>
    <Detail>
      <currencyFrom>sample string 1</currencyFrom>
      <currencyTo>sample string 2</currencyTo>
    </Detail>
    <Detail>
      <currencyFrom>sample string 1</currencyFrom>
      <currencyTo>sample string 2</currencyTo>
    </Detail>
  </Buy>
  <Sell>
    <Detail>
      <currencyFrom>sample string 1</currencyFrom>
      <currencyTo>sample string 2</currencyTo>
    </Detail>
    <Detail>
      <currencyFrom>sample string 1</currencyFrom>
      <currencyTo>sample string 2</currencyTo>
    </Detail>
  </Sell>
</PairResponseModel>