API Reference
GET /v1/feed

GET /v1/feed

Real-time activity feed across all tracked accounts. Filterable by event type, sector, and time window.

Cost: $0.04 per call

curl "https://frontrun.vc/v1/feed?event_type=convergence&hours=48&limit=20" \
  -H "X-API-Key: your_api_key"

Parameters

ParameterTypeDefaultDescription
event_typestring (query)--Filter by event type. Values: "new_follow", "convergence".
hoursinteger (query)24Lookback window in hours.
sincestring (query)"24h"Alternative time window. Accepts hours ("12h") or days ("7d"). Overrides hours if both provided.
sectorstring (query)--Filter events to a specific sector.
limitinteger (query)50Maximum events returned (max 200).

Response

{
  "events": [
    {
      "type": "new_follow",
      "timestamp": "2026-03-28T14:32:00.000Z",
      "vc": {
        "handle": "pmarca",
        "name": "Marc Andreessen"
      },
      "target": {
        "handle": "stealth_ai_co",
        "name": "StealthAI",
        "sector": "AI/ML"
      },
      "classification": {
        "is_company": true,
        "entity_type": "startup",
        "sector": "AI/ML"
      }
    },
    {
      "type": "convergence",
      "timestamp": "2026-03-28T10:15:00.000Z",
      "target": {
        "handle": "dev_infra_xyz",
        "name": "DevInfra",
        "sector": "Developer Tools"
      },
      "accounts": ["pmarca", "naval", "paulg"],
      "signal_strength": 3
    }
  ],
  "total": 2,
  "cost_cents": 10,
  "balance_cents": 4850
}
FieldTypeDescription
typestringEvent type: "new_follow" or "convergence".
accountsarrayOnly present on convergence events. List of VCs involved.
signal_strengthintegerOnly present on convergence events. Number of VCs that converged on the target.