xAPIs.dev
API Reference · v2
Free Tools{ }OpenAPI YAMLGet API key
API Reference / List / Get list members

Get list members

GET/twitter/list/members18 credits

Retrieve the members of a Twitter List. Cursor-paginated. The sample response below is captured from the live API. List endpoints paginate with `has_next_page` and `next_cursor`.

Authentication required
Send your key in the x-api-key header. Requests without a valid key return 401.

Query parameters

list_id
stringrequired
The numeric ID of the list.
cursor
stringoptional
Pagination cursor for the next page.

Response fields

membersarray
Array of member user objects.
has_next_pageboolean
Whether another page of results is available.
next_cursorstring
Cursor for the next page; null or empty when exhausted.
statusstring
Request status: "success" or "error".
msgstring
Status message from the upstream.
Request
curl https://v2.xapis.dev/twitter/list/members \
  -G --data-urlencode "list_id=2073422513296822490" \
  -H "x-api-key: $XAPIS_KEY"
Response200 OK
application/json
{
  "members": [
    {
      "id": "1962434307949297665",
      "name": "皇れお👑🌸にじさんじ",
      "userName": "sumeragi_0o",
      "location": "ほしの学園 ダンス部",
      "url": null,
      "description": "にじさんじ所属🌈🕒すぷれあ @splare_info の最強天才イケメンリーダー!\nおれが~?れお!! / スタイリスト様@takumikuta0116 / 配信 #すとれおむ / \nFA #す絵…",
      "protected": false,
      "isVerified": false,
      "isBlueVerified": false,
      "verifiedType": null,
      "followers": 92977,
      "following": 210,
      "favouritesCount": 10669,
      "statusesCount": 1822,
      "mediaCount": 525,
      "createdAt": "2025-09-01T08:36:58.000000Z",
      "coverPicture": "https://pbs.twimg.com/profile_banners/1962434307949297665/1775015717",
      "profilePicture": "https://pbs.twimg.com/profile_images/2039332726357266432/CtLf2b-j_normal.jpg",
      "canDm": false,
      "isAutomated": false,
      "automatedBy": null
    }
  ],
  "has_next_page": true,
  "next_cursor": "5621420242796609536|2074779262350524394",
  "status": "success",
  "msg": "success"
}
base url · https://v2.xapis.dev
Ready to call Get list members?