v1

latestOpenAPI 3.0.1Apache-2.02026-07-17105189262.9 KB
Default

Tick Data

Get historical tick data for global exchanges.

For more historical tick data, you can visit our bulk download page in the Dashboard here to speed up the download process.

Exchange

Segment

Delay

US CTA/UTP

Full SIP

End-of-day

TSX

  • TSX
  • TSX Venture
  • Index

End-of-day

LSE

  • London Stock Exchange (L)
  • LSE International (L)
  • LSE European (L)

15 minute

Euronext

  • Euronext Paris (PA)
  • Euronext Amsterdam (AS)
  • Euronext Lisbon (LS)
  • Euronext Brussels (BR)
  • Euronext Oslo (OL)
  • Euronext London (LN)
  • Euronext Dublin (IR)
  • Index
  • Warrant

End-of-day

Deutsche Börse

  • Frankfurt (F)
  • Xetra (DE)
  • Duesseldorf (DU)
  • Hamburg (HM)
  • Berlin (BE)
  • Hanover (HA)
  • Stoxx (SX)
  • TradeGate (TG)
  • Zertifikate (SC)
  • Index
  • Warrant

End-of-day

get/stock/tick

Query parameters

symbolstring required

Symbol.

datestring date required

Date: 2020-04-02.

limitinteger required

Limit number of ticks returned. Maximum value: <code>25000</code>

skipinteger required

Number of ticks to skip. Use this parameter to loop through the entire data.

Response

successful operation

sstring

Symbol.

skipinteger

Number of ticks skipped.

countinteger

Number of ticks returned. If <code>count</code> < <code>limit</code>, all data for that date has been returned.

totalinteger

Total number of ticks for that date.

vnumber[]

List of volume data.

pnumber[]

List of price data.

tinteger[]

List of timestamp in UNIX ms.

xstring[]

List of venues/exchanges. A list of exchange codes can be found <a target="_blank" href="https://docs.google.com/spreadsheets/d/1Tj53M1svmr-hfEtbk6_NpVR1yAyGLMaH6ByYU6CG0ZY/edit?usp=sharing",>here</a>

Example response

{
  "p": [
    5.637377,
    5.637377
  ],
  "total": 1,
  "s": "s",
  "c": [
    [
      "c",
      "c"
    ],
    [
      "c",
      "c"
    ]
  ],
  "t": [
    2,
    2
  ],
  "v": [
    5.962134,
    5.962134
  ],
  "count": 6,
  "x": [
    "x",
    "x"
  ],
  "skip": 0
}