API ReferenceList Data
List Members
Fetch the members of a public List by its numeric ID, cursor-paginated. Returns full user objects for every account in the List. Cost: $0.0008 per call.
Authorization
bearerAuth AuthorizationBearer <token>
Pass your API key as a bearer token on every request: Authorization: Bearer <API_KEY>.
In: header
Query Parameters
list_id*string
Numeric ID of the public List.
cursor?string
Pagination cursor from a previous response.
Response Body
application/json
curl -X GET "https://example.com/list/members?list_id=1234567890123456789"{ "users": [ { "id": "745273", "username": "naval", "name": "Naval", "is_blue_verified": true } ], "has_next_page": true, "next_cursor": "DAABCgABF...", "status": "success"}Verified Followers GETNew
Fetch only the Verified (Blue) accounts that follow a user, cursor-paginated. A fast way to filter a large follower base down to higher-signal accounts. Cost: $0.0008 per call.
Like Tweet POSTNew
Like a tweet as the authenticated account. Requires a logged-in session for the acting account. Billed at $0.0015 per call. Cost: $0.0015 per call.