Get historical daily or monthly signals for a ticker (max 1 year).
GET
/signals-history/{ticker}
curl \
--request GET 'https://api.falpha.ai/signals-history/{ticker}?api_key=api_token_value'
Response examples (200)
{
"ticker": "string",
"regime": "string",
"period": "string",
"predictions": [
{
"date": "2025-05-04T09:42:00Z",
"signal": "string",
"confidence": 42.0
}
]
}
Response examples (422)
{
"detail": [
{
"loc": [
"string"
],
"msg": "string",
"type": "string"
}
]
}