GET /smart-sell/active-bots
List every active Smart Sell bot the client owns, newest first.
Includes paused bots — check bIsPaused to distinguish live from halted.
Trimmed row shape (no wallets / whitelists) — use /smart-sell/details
for full detail.
Use case
Dashboard overview of every live Smart Sell bot across tokens.
Response 200
{
"bots": [
{
"_id": "...",
"sTokenSymbol": "TOKEN",
"sTokenAddress": "...",
"sPoolId": "...",
"sPoolType": "AMM",
"bIsPaused": false,
"nTransactions": 12,
"nProfitLoss": 0.42,
"profitLossPercentage": 34.1
}
]
}
Example
curl -H "Authorization: Bearer $ACCESS" -H "x-user-id: $USER_ID" \
"$BASE_URL/smart-sell/active-bots"