API Reference
GET /v1/company/:handle/signals

GET /v1/company/:handle/signals

Social signal analysis for a company. Returns buzz score, sentiment, mention count, notable mentions, and tracked VC followers.

Cost: $0.04 per call

curl "https://frontrun.vc/v1/company/stealth_ai_co/signals" \
  -H "X-API-Key: your_api_key"

Parameters

ParameterTypeDefaultDescription
handlestring (path)--X username of the company. Required.

Response

{
  "handle": "stealth_ai_co",
  "signals": {
    "buzz_score": 0.73,
    "sentiment": "positive",
    "mention_count": 42,
    "notable_mentions": [
      {
        "author": "pmarca",
        "text": "StealthAI is doing something really interesting with workflow automation",
        "date": "2026-03-26",
        "likes": 1200
      },
      {
        "author": "paulg",
        "text": "One of the most promising AI startups I've seen this quarter",
        "date": "2026-03-22",
        "likes": 890
      }
    ],
    "tracked_vc_followers": ["pmarca", "naval", "paulg"],
    "tracked_vc_count": 3
  },
  "cost_cents": 10,
  "balance_cents": 4850
}
FieldTypeDescription
buzz_scorenumberNormalized buzz score (0–1) based on mention velocity and engagement.
sentimentstringOverall sentiment: "positive", "neutral", or "negative".
tracked_vc_followersarrayUsernames of tracked VCs that follow this company.
tracked_vc_countintegerNumber of tracked VCs following this company.