TwitterAPIs Docs
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.

GET
/list/members

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"}