Get quarterly cash position history
GET
/api/v1/public/cash-position/:ticker/history1 credit / callAPI key required
Up to ten years of quarterly cash-and-equivalents history for a company, sourced from SEC XBRL company-facts. Returns an array of `{periodEnd, usd, formType, isAnnual}` points sorted chronologically, deduped by period with annual (10-K/20-F) filings preferred over interim ones for the same date.
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/history' \
-H "X-Api-Key: $SIGNAL8_API_KEY"Request URL
GET
https://api.signal8.ai/api/v1/public/cash-position/AAPL/historyexample · 200
{
"data": {
"cik": "0001854963",
"ticker": "SHFS",
"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
}
]
}
}