Skip to main content
GET
/
v1
/
stocks
/
snapshot
Get Full Market Snapshot
curl --request GET \
  --url https://api.aries.com/v1/stocks/snapshot \
  --header 'Authorization: Bearer <token>'
import requests

url = "https://api.aries.com/v1/stocks/snapshot"

headers = {"Authorization": "Bearer <token>"}

response = requests.get(url, headers=headers)

print(response.text)
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};

fetch('https://api.aries.com/v1/stocks/snapshot', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://api.aries.com/v1/stocks/snapshot",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main

import (
"fmt"
"net/http"
"io"
)

func main() {

url := "https://api.aries.com/v1/stocks/snapshot"

req, _ := http.NewRequest("GET", url, nil)

req.Header.Add("Authorization", "Bearer <token>")

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.get("https://api.aries.com/v1/stocks/snapshot")
.header("Authorization", "Bearer <token>")
.asString();
require 'uri'
require 'net/http'

url = URI("https://api.aries.com/v1/stocks/snapshot")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'

response = http.request(request)
puts response.read_body
{
  "count": 3,
  "status": "OK",
  "tickers": [
    {
      "day": {
        "close": 444.176,
        "high": 445.955,
        "low": 442.158,
        "open": 442.158,
        "volume": 151395,
        "vwap": 445.03447
      },
      "lastQuote": {
        "askPrice": 0,
        "askSize": 0,
        "bidPrice": 0,
        "bidSize": 0,
        "timestamp": 0
      },
      "lastTrade": {
        "tradeId": "71675577320245",
        "price": 0,
        "size": 0,
        "timestamp": 0,
        "exchangeId": 0
      },
      "min": {
        "accumulatedVolume": 151395,
        "close": 444.187,
        "high": 444.57,
        "low": 444.187,
        "numberOfTrades": 59,
        "open": 444.57,
        "timestamp": 1767606360000,
        "volume": 2532,
        "vwap": 444.40449
      },
      "prevDay": {
        "close": 438.07,
        "high": 458.34,
        "low": 435.3,
        "open": 457.8,
        "volume": 85351571,
        "vwap": 444.0976
      },
      "ticker": "TSLA",
      "todaysChange": 0,
      "todaysChangePerc": 0,
      "updated": 1767606420000000000
    }
  ]
}

Authorizations

Authorization
string
header
required

OAuth2 Bearer token: obtain an access token from the token endpoint and send it in the Authorization header.

Query Parameters

tickers
string

Comma-separated list of tickers, such as AAPL,MSFT. Use this to request several companies in one call.

Example:

"AAPL,TSLA,GOOG"

includeOtc
boolean

Whether to include over-the-counter securities. Use true only when your product needs OTC market coverage.

Example:

false

Response

Successful response

count
integer

Number of tickers returned

status
string

Status string from the upstream data provider — typically OK for a successful response. Treat any other value as an error indicator alongside the HTTP status code.

tickers
object[]

Array of ticker snapshots