GET api/getRecord

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Search
NameDescriptionTypeAdditional information
record

Collection of spotdata

None.

Response Formats

application/json, text/json

Sample:
{
  "record": [
    {
      "symbol": "sample string 1",
      "lastPrice": 2.0,
      "priceChange": 3.0,
      "priceChangePercent": 4.0
    },
    {
      "symbol": "sample string 1",
      "lastPrice": 2.0,
      "priceChange": 3.0,
      "priceChangePercent": 4.0
    }
  ]
}

application/xml, text/xml

Sample:
<Search xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/KG_API.Models">
  <record>
    <spotdata>
      <lastPrice>2</lastPrice>
      <priceChange>3</priceChange>
      <priceChangePercent>4</priceChangePercent>
      <symbol>sample string 1</symbol>
    </spotdata>
    <spotdata>
      <lastPrice>2</lastPrice>
      <priceChange>3</priceChange>
      <priceChangePercent>4</priceChangePercent>
      <symbol>sample string 1</symbol>
    </spotdata>
  </record>
</Search>