Skip to main content

GET /flexi/stopped

List bots that have fully completed (depleted SOL or stopped + withdrawn).

Terminal state — no further worker activity.

Use case

Historical reporting: final volume, makers, holders, referral earnings per bot.

Query params

FieldTypeRequiredDescription
sGroupIdstringnoFilter by 13-char group id.

Response 200

{
"stoppedBots": [
{
"_id": "...",
"sGroupId": "...",
"eStatus": "3",
"sTokenAddress": "...",
"sTokenName": "MyToken",
"sTokenSymbol": "MTK",
"sPoolId": "...",
"ePoolChosen": "RAYDIUM",
"nSOL": 5,
"nVolumeTraded": 45.2,
"nVolumeTradedInSol": 45.2,
"nVolumeTradedInUSD": 6800,
"nHolders": 12,
"nMakers": 24,
"nTransactions": 180,
"dCreatedAt": "2026-04-20T10:00:00.000Z",
"dEndTime": "2026-04-21T10:00:00.000Z"
}
]
}

Errors

StatusMeaning
400sGroupId malformed.

Example

curl -H "Authorization: Bearer $ACCESS" -H "x-user-id: $USER_ID" \
"$BASE_URL/flexi/stopped"