Get Snapshot Range
curl --request GET \
--url https://api.example.com/api/internal/regime/v2/snapshots/rangeimport requests
url = "https://api.example.com/api/internal/regime/v2/snapshots/range"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.example.com/api/internal/regime/v2/snapshots/range', 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.example.com/api/internal/regime/v2/snapshots/range",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$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.example.com/api/internal/regime/v2/snapshots/range"
req, _ := http.NewRequest("GET", url, nil)
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.example.com/api/internal/regime/v2/snapshots/range")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/api/internal/regime/v2/snapshots/range")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body[
{
"snapshot_id": "<string>",
"logic_version": "<string>",
"feature_version": "<string>",
"as_of": "2023-11-07T05:31:56Z",
"effective_for_session": "2023-12-25",
"asset_scope": {
"kind": "market_index",
"primary_asset": "SPY",
"universe": [
"<string>"
]
},
"horizon_profile": "macro",
"feature_binding": "prior_session",
"risk_state": "calm",
"volatility_change": "compressing",
"directional_pressure": "upside_extended",
"breadth_state": "broad",
"correlation_state": "diversified",
"intraday_structure": "range_bound",
"variant": "corrected",
"unavailable_inputs": [
"<string>"
],
"risk_classifier_version": "risk-v2.0",
"risk_inputs_complete": false,
"provenance": [
{
"source": "<string>",
"source_id": "<string>",
"artifact_id": "<string>",
"as_of": "2023-11-07T05:31:56Z",
"notes": "<string>"
}
],
"legacy_shadow_grid": {
"direction": "<string>",
"volatility": "<string>",
"grid_cell": "<string>",
"logic_version": "<string>",
"variant": "<string>"
}
}
]{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}regime-vnext-internal
Get Snapshot Range
GET
/
api
/
internal
/
regime
/
v2
/
snapshots
/
range
Get Snapshot Range
curl --request GET \
--url https://api.example.com/api/internal/regime/v2/snapshots/rangeimport requests
url = "https://api.example.com/api/internal/regime/v2/snapshots/range"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.example.com/api/internal/regime/v2/snapshots/range', 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.example.com/api/internal/regime/v2/snapshots/range",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$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.example.com/api/internal/regime/v2/snapshots/range"
req, _ := http.NewRequest("GET", url, nil)
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.example.com/api/internal/regime/v2/snapshots/range")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/api/internal/regime/v2/snapshots/range")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body[
{
"snapshot_id": "<string>",
"logic_version": "<string>",
"feature_version": "<string>",
"as_of": "2023-11-07T05:31:56Z",
"effective_for_session": "2023-12-25",
"asset_scope": {
"kind": "market_index",
"primary_asset": "SPY",
"universe": [
"<string>"
]
},
"horizon_profile": "macro",
"feature_binding": "prior_session",
"risk_state": "calm",
"volatility_change": "compressing",
"directional_pressure": "upside_extended",
"breadth_state": "broad",
"correlation_state": "diversified",
"intraday_structure": "range_bound",
"variant": "corrected",
"unavailable_inputs": [
"<string>"
],
"risk_classifier_version": "risk-v2.0",
"risk_inputs_complete": false,
"provenance": [
{
"source": "<string>",
"source_id": "<string>",
"artifact_id": "<string>",
"as_of": "2023-11-07T05:31:56Z",
"notes": "<string>"
}
],
"legacy_shadow_grid": {
"direction": "<string>",
"volatility": "<string>",
"grid_cell": "<string>",
"logic_version": "<string>",
"variant": "<string>"
}
}
]{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}Query Parameters
Response
Successful Response
Show child attributes
Show child attributes
Available options:
macro, swing, intraday Available options:
prior_session, prior_bar Available options:
calm, normal, elevated, stress, unavailable Available options:
compressing, stable, expanding, unavailable Available options:
upside_extended, downside_extended, balanced, persistent_trend Available options:
broad, narrow, deteriorating, recovering, unavailable Available options:
diversified, correlated, turbulent, unavailable Available options:
range_bound, trend_day, opening_drive, failed_auction, high_noise, unavailable Show child attributes
Show child attributes
Legacy 2x3 grid retained for diagnostics, never direct vNext policy.
Show child attributes
Show child attributes