API Reference
GET /v1/follows/snapshot

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

ParameterTypeRequiredDescription
usernamestring (path)YesX 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/..."
    }
  ]
}
FieldTypeDescription
follow_countintegerTotal number of accounts being followed.
followsarrayArray of followed accounts with profile details.

Errors

StatusDescription
402Insufficient balance
404Not tracking this account