GET /signals-history/{ticker}

Get historical daily or monthly signals for a ticker (max 1 year).

Path parameters

  • ticker string Required

Query parameters

  • period string

    Default value is 15d.

  • regime string

    Default value is neutral.

Responses

  • 200 application/json

    Successful Response

    Hide response attributes Show response attributes object
    • ticker string Required
    • regime string Required
    • period string Required
    • predictions array[object] Required
      Hide predictions attributes Show predictions attributes object
      • date string(date-time) Required
      • signal string Required
      • confidence number Required
  • 422 application/json

    Validation Error

    Hide response attribute Show response attribute object
    • detail array[object]
      Hide detail attributes Show detail attributes object
      • loc array[string | integer] Required
      • msg string Required
      • type string Required
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"
    }
  ]
}