Retrieve followers of an X list with profile details
cURL
curl --request GET \ --url https://api.example.com/x/lists/{id}/followers \ --header 'x-api-key: <x-api-key>'
curl "https://xquik.com/api/v1/x/lists/1234567890/followers" \ -H "x-api-key: xq_YOUR_KEY_HERE" | jq
cursor
{ "users": [ { "id": "987654321", "username": "xquikcom", "name": "Xquik", "followers": 10000, "verified": true } ], "has_next_page": true, "next_cursor": "DAACCgACGE..." }
{ "error": "invalid_list_id", "message": "List ID required" }
{ "error": "unauthenticated" }
{ "error": "no_subscription" }
Was this page helpful?