Skip to main content

GET /flexi/running

List bots currently running (not paused, not scheduled to stop).

Filters out paused / stopping bots — those surface on their dedicated endpoints.

Use case

"Active bots" dashboard; filter by sGroupId for per-campaign view.

Query params

FieldTypeRequiredDescription
sGroupIdstringnoFilter by 13-char group id.

Response 200

{
"runningBots": [
{
"_id": "...",
"sGroupId": "...",
"eStatus": "2",
"sTokenAddress": "...",
"sTokenName": "MyToken",
"sTokenSymbol": "MTK",
"sPoolId": "...",
"ePoolChosen": "RAYDIUM",
"nSOL": 5,
"nMinSwapSol": 0.1,
"nMaxSwapSol": 1.5,
"nWaitTime": 30,
"nMaxWaitTime": 120,
"bIsPaused": false,
"bStopBot": false,
"sAddress1": "...",
"nVolumeTraded": 12.3,
"nVolumeTradedInSol": 12.3,
"nVolumeTradedInUSD": 1800,
"nHolders": 4,
"nMakers": 8,
"nTransactions": 42,
"dCreatedAt": "2026-04-20T10:00:00.000Z",
"dUpdatedAt": "2026-04-20T11:00:00.000Z"
}
]
}

Errors

StatusMeaning
400sGroupId malformed (must be 13 alphanumeric chars).

Example

curl -H "Authorization: Bearer $ACCESS" -H "x-user-id: $USER_ID" \
"$BASE_URL/flexi/running?sGroupId=<groupId>"