Pool Status
Get health and rate limit info for all accounts in the pool
GET /twitter/pool/status
Query Parameters
None
Response
{
"total": 3,
"active": 3,
"disabled": 0,
"accounts": [
{
"index": 0,
"username": "monadnerd",
"disabled": false,
"rateLimits": {
"SearchTimeline": {
"limit": 50,
"remaining": 23,
"resetAt": "2026-02-01T05:06:03.000Z",
"isReset": false
},
"Followers": {
"limit": 500,
"remaining": 480,
"resetAt": "2026-02-01T05:10:00.000Z",
"isReset": false
}
}
},
{
"index": 1,
"username": "GlobalNADS",
"disabled": false,
"rateLimits": {}
},
{
"index": 2,
"username": "Druv70801539",
"disabled": false,
"rateLimits": {}
}
]
}Response Fields
| Field | Type | Description |
|---|---|---|
total | number | Total accounts in pool |
active | number | Active (non-disabled) accounts |
disabled | number | Disabled accounts |
accounts[].index | number | Account index in pool |
accounts[].username | string | Twitter username |
accounts[].disabled | boolean | Whether account is disabled |
accounts[].rateLimits | object | Rate limit status per endpoint |
Example
curl "https://api.scrapetwitter.com/twitter/pool/status"