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
| Parameter | Type | Default | Description |
|---|---|---|---|
event_type | string (query) | -- | Filter by event type. Values: "new_follow", "convergence". |
hours | integer (query) | 24 | Lookback window in hours. |
since | string (query) | "24h" | Alternative time window. Accepts hours ("12h") or days ("7d"). Overrides hours if both provided. |
sector | string (query) | -- | Filter events to a specific sector. |
limit | integer (query) | 50 | Maximum 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
}| Field | Type | Description |
|---|---|---|
type | string | Event type: "new_follow" or "convergence". |
accounts | array | Only present on convergence events. List of VCs involved. |
signal_strength | integer | Only present on convergence events. Number of VCs that converged on the target. |