Followers

GET /followers

List all tracked followers with pagination and filtering.

Request

GET /followers?status=launched&limit=50&offset=0

Query Parameters

Parameter
Type
Default
Description

status

string

-

Filter by status

limit

number

50

Results per page (max 100)

offset

number

0

Skip N results

Status Values

Status
Description

pending

Waiting to launch

processing

Launch in progress

launched

Successfully launched

failed

Launch failed

skipped

Backfilled/skipped

Response

Response Fields

Follower Object

Field
Type
Description

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

Field
Type
Description

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

1

Page 1

2

Page 2

3

Page 3


GET /followers/:id

Get detailed information about a specific follower, including audit logs.

Request

Path Parameters

Parameter
Type
Description

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


Filtering Examples

Find All Pending

Find Retryable Failures

Get Recent Launches

Count by Status

1

Total launched

2

Total failed