Get level history
Level history at 1h or 1d, oldest first, over the trailing 90-day window.
start, end, and interval are all optional. With none supplied you get the full trailing window at 1d.
A window that reaches back past the floor is clamped, not rejected, so a chart that asked for a year still renders. meta reports what was actually served: effectiveStart, effectiveEnd, clamped, and historyMaxDays. Read clamped before labeling a chart with the range you asked for. A window falling entirely before the floor returns an empty points array with clamped: true.
Full history since inception is in the free snapshot bundles.
curl -s "https://api.beliefsystems.xyz/v1/indices/CONFLICT/history?start=2026-08-28T00:00:00Z&end=2026-08-31T00:00:00Z&interval=1d" \
-H "Authorization: Bearer $BELIEF_API_KEY"import os
import requests
resp = requests.get(
"https://api.beliefsystems.xyz/v1/indices/CONFLICT/history?start=2026-08-28T00:00:00Z&end=2026-08-31T00:00:00Z&interval=1d",
headers={"Authorization": f"Bearer {os.environ['BELIEF_API_KEY']}"},
timeout=10,
)
resp.raise_for_status()
payload = resp.json()
print(payload["data"])const res = await fetch("https://api.beliefsystems.xyz/v1/indices/CONFLICT/history?start=2026-08-28T00:00:00Z&end=2026-08-31T00:00:00Z&interval=1d", {
headers: { Authorization: `Bearer ${process.env.BELIEF_API_KEY}` },
});
if (!res.ok) throw new Error(`Belief Systems API ${res.status}`);
const { data, meta } = await res.json();
console.log(data);<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.beliefsystems.xyz/v1/indices/{ticker}/history",
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.beliefsystems.xyz/v1/indices/{ticker}/history"
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.beliefsystems.xyz/v1/indices/{ticker}/history")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.beliefsystems.xyz/v1/indices/{ticker}/history")
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{
"data": {
"count": 4,
"interval": "1d",
"points": [
{
"indexLevel": "35.15037728",
"stale": false,
"t": "2026-08-28T00:04:50.602836Z"
},
{
"indexLevel": "35.41478865",
"stale": false,
"t": "2026-08-29T00:26:31.745989Z"
},
{
"indexLevel": "35.47475770",
"stale": false,
"t": "2026-08-30T00:35:30.281356Z"
},
{
"indexLevel": "36.04218539",
"stale": false,
"t": "2026-08-30T23:44:45.186614Z"
}
],
"ticker": "CONFLICT"
},
"meta": {
"attribution": "Source: Belief Systems (beliefsystems.xyz)",
"clamped": false,
"effectiveEnd": "2026-08-31T00:00:00.000000Z",
"effectiveStart": "2026-08-28T00:00:00.000000Z",
"generatedAt": "2026-08-31T14:01:28.821152Z",
"historyMaxDays": 90,
"license": "https://beliefsystems.xyz/license",
"termsUrl": "https://beliefsystems.xyz/terms"
}
}{
"error": {
"code": "invalid_api_key",
"docsUrl": "https://docs.beliefsystems.xyz/api-reference/limits#invalid-api-key",
"message": "This endpoint requires a Data API key. Create one free at https://beliefsystems.xyz/data ; programmatic or commercial licensing is at https://beliefsystems.xyz/license.",
"requestId": "9f2c1ad4e6b74c0f8a3d5e1b7c904a26"
}
}{
"error": {
"code": "not_found",
"docsUrl": "https://docs.beliefsystems.xyz/api-reference/limits#not-found",
"message": "No Belief index 'NOPE'. GET /v1/indices lists the published catalog.",
"requestId": "9f2c1ad4e6b74c0f8a3d5e1b7c904a26"
}
}{
"error": {
"code": "invalid_interval",
"docsUrl": "https://docs.beliefsystems.xyz/api-reference/limits#invalid-interval",
"message": "interval must be '1h' or '1d'. Full granularity is part of the licensed feed.",
"requestId": "9f2c1ad4e6b74c0f8a3d5e1b7c904a26"
}
}{
"error": {
"code": "rate_limited",
"docsUrl": "https://docs.beliefsystems.xyz/api-reference/limits#rate-limited",
"message": "Rate limit exceeded: 60 requests per minute per key.",
"requestId": "9f2c1ad4e6b74c0f8a3d5e1b7c904a26"
}
}{
"error": {
"code": "invalid_api_key",
"docsUrl": "<string>",
"message": "<string>",
"requestId": "<string>"
}
}Authorizations
Your Data API key as a Bearer token: Authorization: Bearer belief_live_.... This is the canonical form. Keys belong on a server, never in a browser.
Path Parameters
Ticker, case-insensitive. GET /v1/indices and GET /v1/volatility are the catalogs.
Query Parameters
Window start, ISO 8601. Optional. A start older than the trailing 90-day window is clamped, never rejected; meta.clamped says so.
Window end, ISO 8601. Optional, defaults to now. A future end is clamped to now; only a window that is empty once clamped is an error.
Sampling interval. Finer granularity is part of the licensed feed.
1h, 1d curl -s "https://api.beliefsystems.xyz/v1/indices/CONFLICT/history?start=2026-08-28T00:00:00Z&end=2026-08-31T00:00:00Z&interval=1d" \
-H "Authorization: Bearer $BELIEF_API_KEY"import os
import requests
resp = requests.get(
"https://api.beliefsystems.xyz/v1/indices/CONFLICT/history?start=2026-08-28T00:00:00Z&end=2026-08-31T00:00:00Z&interval=1d",
headers={"Authorization": f"Bearer {os.environ['BELIEF_API_KEY']}"},
timeout=10,
)
resp.raise_for_status()
payload = resp.json()
print(payload["data"])const res = await fetch("https://api.beliefsystems.xyz/v1/indices/CONFLICT/history?start=2026-08-28T00:00:00Z&end=2026-08-31T00:00:00Z&interval=1d", {
headers: { Authorization: `Bearer ${process.env.BELIEF_API_KEY}` },
});
if (!res.ok) throw new Error(`Belief Systems API ${res.status}`);
const { data, meta } = await res.json();
console.log(data);<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.beliefsystems.xyz/v1/indices/{ticker}/history",
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.beliefsystems.xyz/v1/indices/{ticker}/history"
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.beliefsystems.xyz/v1/indices/{ticker}/history")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.beliefsystems.xyz/v1/indices/{ticker}/history")
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{
"data": {
"count": 4,
"interval": "1d",
"points": [
{
"indexLevel": "35.15037728",
"stale": false,
"t": "2026-08-28T00:04:50.602836Z"
},
{
"indexLevel": "35.41478865",
"stale": false,
"t": "2026-08-29T00:26:31.745989Z"
},
{
"indexLevel": "35.47475770",
"stale": false,
"t": "2026-08-30T00:35:30.281356Z"
},
{
"indexLevel": "36.04218539",
"stale": false,
"t": "2026-08-30T23:44:45.186614Z"
}
],
"ticker": "CONFLICT"
},
"meta": {
"attribution": "Source: Belief Systems (beliefsystems.xyz)",
"clamped": false,
"effectiveEnd": "2026-08-31T00:00:00.000000Z",
"effectiveStart": "2026-08-28T00:00:00.000000Z",
"generatedAt": "2026-08-31T14:01:28.821152Z",
"historyMaxDays": 90,
"license": "https://beliefsystems.xyz/license",
"termsUrl": "https://beliefsystems.xyz/terms"
}
}{
"error": {
"code": "invalid_api_key",
"docsUrl": "https://docs.beliefsystems.xyz/api-reference/limits#invalid-api-key",
"message": "This endpoint requires a Data API key. Create one free at https://beliefsystems.xyz/data ; programmatic or commercial licensing is at https://beliefsystems.xyz/license.",
"requestId": "9f2c1ad4e6b74c0f8a3d5e1b7c904a26"
}
}{
"error": {
"code": "not_found",
"docsUrl": "https://docs.beliefsystems.xyz/api-reference/limits#not-found",
"message": "No Belief index 'NOPE'. GET /v1/indices lists the published catalog.",
"requestId": "9f2c1ad4e6b74c0f8a3d5e1b7c904a26"
}
}{
"error": {
"code": "invalid_interval",
"docsUrl": "https://docs.beliefsystems.xyz/api-reference/limits#invalid-interval",
"message": "interval must be '1h' or '1d'. Full granularity is part of the licensed feed.",
"requestId": "9f2c1ad4e6b74c0f8a3d5e1b7c904a26"
}
}{
"error": {
"code": "rate_limited",
"docsUrl": "https://docs.beliefsystems.xyz/api-reference/limits#rate-limited",
"message": "Rate limit exceeded: 60 requests per minute per key.",
"requestId": "9f2c1ad4e6b74c0f8a3d5e1b7c904a26"
}
}{
"error": {
"code": "invalid_api_key",
"docsUrl": "<string>",
"message": "<string>",
"requestId": "<string>"
}
}