stocks_archive

FREEMIUM
By Slava Ryabinin | Updated hace un mes | Finance
Popularity

1.9 / 10

Latency

697ms

Service Level

100%

Health Check

N/A

README

Documentation

OpenAPI in JSON format

API is really easy, check this out

List of available tickers:

Reqest:
/ticker/list

Response:

{
  "tickers": [
    {
      "name": "3m",
      "description": "3M co",
      "marketName": "BATS"
    },
    {
      "name": "abbvie",
      "description": "AbbVie Inc.",
      "marketName": "BATS"
    },
    {
      "name": "adobe",
      "description": "Adobe Systems Inc.",
      "marketName": null
    },
...

History data for some ticker:

Reqest:
/ticker/archive/gold/1h/2010-04-12T14:30/2010-04-20T12:30
Where:

  • gold - Ticker “name” from /ticker/list request;
  • 1h - Ticker period, can be: “5m”, “10m”, “15m”, “30m”, “1h”, “1d”, “1w”, “1M”

Response:

{
  "records": [
    {
      "closeDateTime": "2010-04-12T15:00:00.000Z",
      "open": 1156.7,
      "close": 1155.6,
      "high": 1162.2,
      "low": 1154.8,
      "volume": 2596
    },
    {
      "closeDateTime": "2010-04-12T16:00:00.000Z",
      "open": 1155.4,
      "close": 1156.9,
      "high": 1162.2,
      "low": 1155,
      "volume": 801
    },
    ...

Server ping:

Reqest:
/ping

Response:

{
  "datetime": "2023-04-03T19:16:37.314521Z",
  "version": "1.4.2",
  "uptime": 109767.75
}

Where:

  • datetime - Current server time;
  • version - Server version;
  • uptime - Server uptime.
Followers: 1
Resources:
Product Website Terms of use
API Creator:
Rapid account: Slava Ryabinin
Slava Ryabinin
ryabinin.v.v
Log In to Rate API
Rating: 4 - Votes: 1