Skip to content
GET/list/members$0.0008 / call

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.

Request

curl "https://api.twitterapis.com/list/members?list_id=1234567890123456789" \
  -H "Authorization: Bearer $TWITTERAPIS_KEY"

Parameters

ParameterTypeRequiredDescription
list_idstringrequired

Numeric ID of the public List.

Example: 1234567890123456789

cursorstringoptional

Pagination cursor from a previous response.

Response

FieldTypeDescription
usersarray<User>

List member user objects for this page.

has_next_pageboolean

True when more results are available; pass next_cursor to fetch them.

next_cursorstring

Opaque cursor token for the next page. Empty string on the final page.

statusstring

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.