API V1 (Legacy)
Reference
GET /timeline

GET /timeline

Alternative-data timeline endpoint.

Description

Returns a comprehensive historical timeline of alternative data metrics for a ticker.

Includes daily and monthly data points covering:

  • Social metrics: Reddit, Twitter/X, Stocktwits, TikTok, Instagram, Facebook, YouTube mentions and followers
  • App metrics: iOS/Android downloads, ratings, store rankings
  • Employment metrics: Job postings, employee counts
  • Financial metrics: Price, target price, AI price prediction
  • AI scores: Overall score and component scores
  • Employer ratings: Glassdoor ratings, business outlook
  • Web traffic: Monthly web traffic estimates

Endpoint

GET https://api.altindex.com/timeline/

Parameters

ParameterTypeRequiredDescription
apikeystringYesYour API key. apiKey also works.
symbolstringYesStock ticker symbol (e.g., TSLA).
datestringNoSpecific date to retrieve (YYYY-MM-DD). If omitted, returns historical data.
datastringNoComma-separated list of data types. Use job_posts,webtraffic for a simplified response.

Example Request

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

Example Response

{
  "status": 200,
  "id": "1",
  "name": "Tesla",
  "logo": "https://altindex.com/assets/images/tickers/TSLA.jpg",
  "domain": "tesla.com",
  "ticker": "TSLA",
  "description": "Tesla, Inc. designs, develops...",
  "industry": "Autos",
  "peers": ["F", "GM", "RIVN", "LCID"],
  "insights": { ... },
  "data": {
    "daily": [
      {
        "date": "2026-01-15",
        "reddit_mentions": 245,
        "reddit_sentiment": 72,
        "stocktwits_mentions": 189,
        "twitter_followers": 25400000,
        "instagram_followers": 14200000,
        "ios_downloads": 12500,
        "android_downloads": 18200,
        "job_posts": 1250,
        "financials": {
          "price": 248.50,
          "target_price": 275.00,
          "market_cap": 785000000000
        },
        "ai_scores": {
          "score": 78,
          "audience": 82,
          "employment": 71,
          "customer": 85,
          "fundamental": 74
        }
      }
    ],
    "monthly": [
      {
        "date": "2026-01-01",
        "webtraffic": 125000000,
        "employer_rating_overall": 78,
        "employee_business_outlook": 65
      }
    ]
  }
}

Daily Data Fields

FieldTypeDescription
datestringDate (YYYY-MM-DD)
reddit_mentionsintegerReddit mention count
reddit_sentimentintegerReddit sentiment score (0-100)
stocktwits_mentionsintegerStocktwits mention count
twitter_followersintegerTwitter/X follower count
instagram_followersintegerInstagram follower count
facebook_fansintegerFacebook fan count
youtube_subscribersintegerYouTube subscriber count
tiktok_followersintegerTikTok follower count
ios_downloadsintegeriOS app downloads
android_downloadsintegerAndroid app downloads
app_downloadsintegerAverage of iOS and Android downloads
jobs_glassdoorintegerGlassdoor job postings
jobs_linkedinintegerLinkedIn job postings
job_postsintegerAverage of Glassdoor and LinkedIn job posts
employees_linkedinintegerLinkedIn employee count
financialsobjectFinancial metrics (price, target_price, market_cap, pe_ratio)
ai_scoresobjectAI scores (score, audience, employment, customer, fundamental)

Monthly Data Fields

FieldTypeDescription
datestringDate (YYYY-MM-DD)
webtrafficintegerEstimated monthly web visitors
employer_rating_overallintegerGlassdoor overall rating (0-100)
employee_business_outlookintegerGlassdoor business outlook (0-100)