Getting started
Your first signal in under a minute.
Osiris OS exposes the same intelligence layer that powers osirisintel.com as a single REST endpoint. Authenticate with a bearer token, hit an endpoint, get JSON.
1 · Claim a key
Create an account, open the dashboard, and create a new key. You'll see the full token once — copy it.
2 · Call the API
curl
bash
curl https://api.osirisos.com/v1/global-stability \
-H "Authorization: Bearer osk_live_..."3 · Read the response
json
{
"score": 41,
"trend": "down",
"pillars": {
"conflict": 63,
"cyber": 58,
"supply_chain": 34,
"macro": 47
},
"as_of": "2026-06-09T12:00:00Z"
}That's the whole loop. See Endpoints for the full surface area.
