GET
/list/members$0.0008 / callList Members
Fetch the members of a public List by its numeric ID, cursor-paginated. Returns full user objects for every account in the List.
Request
curl "https://api.twitterapis.com/list/members?list_id=1234567890123456789" \
-H "Authorization: Bearer $TWITTERAPIS_KEY"Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
list_id | string | required | Numeric ID of the public List. Example: |
cursor | string | optional | Pagination cursor from a previous response. |
Response
| Field | Type | Description |
|---|---|---|
users | array<User> | List member user objects for this page. |
has_next_page | boolean | True when more results are available; pass next_cursor to fetch them. |
next_cursor | string | Opaque cursor token for the next page. Empty string on the final page. |
status | string | Request status, "success" on a normal response. |
Example response
{
"users": [
{
"id": "745273",
"username": "naval",
"name": "Naval",
"is_blue_verified": true
}
],
"has_next_page": true,
"next_cursor": "DAABCgABF...",
"status": "success"
}Pricing for this endpoint
list/members costs $0.0008 per call and returns ~20 tweets, so roughly $0.04 per 1,000 tweets. No subscriptions or minimum spend.