GET /v1/follows/snapshot/:username
Returns the current follow list for a tracked account.
Cost: $0.02 per call
curl https://frontrun.vc/v1/follows/snapshot/pmarca \
-H "X-API-Key: your_api_key"Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
username | string (path) | Yes | X username of the tracked account. |
Response
{
"username": "pmarca",
"follow_count": 70,
"cost_cents": 2,
"balance_cents": 4848,
"follows": [
{
"twitter_user_id": "1234567890",
"username": "newai_startup",
"name": "NewAI",
"description": "Building the future of AI infrastructure",
"verified": true,
"profile_image_url": "https://pbs.twimg.com/..."
}
]
}| Field | Type | Description |
|---|---|---|
follow_count | integer | Total number of accounts being followed. |
follows | array | Array of followed accounts with profile details. |
Errors
| Status | Description |
|---|---|
| 402 | Insufficient balance |
| 404 | Not tracking this account |