Batched Signal History
Get historical daily or monthly signals for one or more tickers (max 1 year).
GET
/signals-history-batched
curl \
--request GET 'https://api.falpha.ai/signals-history-batched?tickers=string&api_key=api_token_value'
Response examples (200)
{
"AAPL": {
"items": [
{
"date": "2025-02-09T00:00:00",
"signal": "buy",
"confidence": 0.5263
},
{
"date": "2025-02-06T00:00:00",
"signal": "buy",
"confidence": 0.5026
},
{
"date": "2025-02-05T00:00:00",
"signal": "buy",
"confidence": 0.5152
}
],
"period": "2m",
"regime": "bull",
"ticker": "AAPL"
},
"MSFT": {
"items": [
{
"date": "2025-02-09T00:00:00",
"signal": "sell",
"confidence": 0.481
},
{
"date": "2025-02-08T00:00:00",
"signal": "sell",
"confidence": 0.463
}
],
"period": "15d",
"regime": "bear",
"ticker": "MSFT"
}
}
Response examples (422)
{
"detail": [
{
"loc": [
"string"
],
"msg": "string",
"type": "string"
}
]
}