Followers
GET /followers
List all tracked followers with pagination and filtering.
Request
GET /followers?status=launched&limit=50&offset=0Query Parameters
status
string
-
Filter by status
limit
number
50
Results per page (max 100)
offset
number
0
Skip N results
Status Values
pending
Waiting to launch
processing
Launch in progress
launched
Successfully launched
failed
Launch failed
skipped
Backfilled/skipped
Response
Response Fields
Follower Object
id
string
Unique identifier
username
string
X username
displayName
string?
X display name
status
string
Launch status
tokenName
string?
Token name
tokenSymbol
string?
Token symbol
tokenAddress
string?
Solana address
pumpUrl
string?
pump.fun URL
detectedAt
string
Detection timestamp
launchedAt
string?
Launch timestamp
retryCount
number
Retry attempts
errorMessage
string?
Last error
Pagination Object
total
number
Total matching records
limit
number
Requested limit
offset
number
Current offset
hasMore
boolean
More results available?
Examples
Get All Followers
Get Launched Only
Get Failed (for retry)
Paginate Results
GET /followers/:id
Get detailed information about a specific follower, including audit logs.
Request
Path Parameters
id
string
Follower UUID
Response
Error Response (404)
Example
Use Cases
View launch details - Full token info and transaction
Debug failures - See error message and logs
Audit trail - Complete history of actions
Verify launches - Check token address and signature
