GET api/Ticker?Coin={Coin}&Currency={Currency}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
Coin

string

Required

Currency

string

Default value is GBP

Body Parameters

None.

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-05-07T12:08:42.6422326+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-05-07T12:08:42.6422326+00:00</CreateDate>
  <LastHigh>3</LastHigh>
  <LastLow>4</LastLow>
  <LastPrice>1</LastPrice>
  <Volume>5</Volume>
</Ticker>