API v1 (Legacy)
Reference
GET /db_price

GET /db_price

Target price beta timeline for a ticker.

Authentication

Use the apiKey (or apikey) query parameter.

Parameters

NameTypeRequiredDescription
apiKeystringyesAPI key query parameter (case-insensitive).
symbolstringyesStock ticker symbol.

Example

curl "https://api.altindex.com/db_price?apiKey=YOUR_API_KEY&symbol=TSLA"

Response Shape

{
  "status": 200,
  "id": "1",
  "name": "Tesla",
  "ticker": "TSLA",
  "data": [
    {
      "date": "2026-01-27",
      "target_price_beta": 412.35
    }
  ]
}