POST api/Ticker

Request Information

URI Parameters

None.

Body Parameters

TickerParameters
NameDescriptionTypeAdditional information
Coin

string

None.

Currency

string

None.

Request Formats

application/json, text/json

Sample:
{
  "Coin": "sample string 1",
  "Currency": "sample string 2"
}

application/xml, text/xml

Sample:
<TickerParameters xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API.Models">
  <Coin>sample string 1</Coin>
  <Currency>sample string 2</Currency>
</TickerParameters>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Ticker
NameDescriptionTypeAdditional information
LastPrice

decimal number

None.

AvgPrice

decimal number

None.

LastHigh

decimal number

None.

LastLow

decimal number

None.

Volume

decimal number

None.

BidHigh

decimal number

None.

BidLow

decimal number

None.

Coin

string

None.

CreateDate

date

None.

Response Formats

application/json, text/json

Sample:
{
  "LastPrice": 1.0,
  "AvgPrice": 2.0,
  "LastHigh": 3.0,
  "LastLow": 4.0,
  "Volume": 5.0,
  "BidHigh": 6.0,
  "BidLow": 7.0,
  "Coin": "sample string 8",
  "CreateDate": "2024-03-25T18:33:40.3354631+00:00"
}

application/xml, text/xml

Sample:
<Ticker xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API.Models">
  <AvgPrice>2</AvgPrice>
  <BidHigh>6</BidHigh>
  <BidLow>7</BidLow>
  <Coin>sample string 8</Coin>
  <CreateDate>2024-03-25T18:33:40.3354631+00:00</CreateDate>
  <LastHigh>3</LastHigh>
  <LastLow>4</LastLow>
  <LastPrice>1</LastPrice>
  <Volume>5</Volume>
</Ticker>