Get cash position model & runway
GET
/api/v1/public/cash-position/:ticker5 credits / callAPI key required
The cash-position model for a company: a cash anchor from the latest 10-K/10-Q, a prorated burn rate, post-anchor capital raises, material cash events, and three runway scenarios (closed, pending, announced). For companies not covered by the model (e.g. foreign private issuers), the response falls back to the SEC XBRL quarterly cash history (`aiModel: false`, `source: "xbrl"`).
Parameters
Path
Company ticker symbol (1-5 letters, case-insensitive)
Code example
cURL
curl -X GET 'https://api.signal8.ai/api/v1/public/cash-position/AAPL' \
-H "X-Api-Key: $SIGNAL8_API_KEY"Request URL
GET
https://api.signal8.ai/api/v1/public/cash-position/AAPLexample · 200
{
"data": {
"ticker": "SHFS",
"cik": "0001854963",
"aiModel": false,
"source": "xbrl",
"history": [
{
"periodEnd": "2024-12-31",
"usd": 2324647,
"formType": "10-K",
"isAnnual": true
},
{
"periodEnd": "2025-03-31",
"usd": 931397,
"formType": "10-Q",
"isAnnual": false
},
{
"periodEnd": "2025-06-30",
"usd": 247318,
"formType": "10-Q",
"isAnnual": false
}
]
}
}