Remove Member From List

POST/tw-v2/interaction/remove-from-list

Description

Remove a user from a Twitter list.

Request Body

ParameterTypeRequiredDescription
authTokenstringrequiredTwitter authentication token (auth_token cookie value)
listIdstringrequiredThe ID of the list to remove the user from
userIdstringrequiredThe ID of the user to remove from the list
proxystringoptionalOptional proxy in format 'host:port@user:pass'

Code Examples

const body = {
  authToken: 'YOUR_AUTH_TOKEN',
  listId: '1234567890',
  userId: '44196397'
};

const response = await fetch('https://api.tweetapi.com/tw-v2/interaction/remove-from-list', {
  method: 'POST',
  headers: {
    'X-API-Key': 'YOUR_API_KEY',
    'Content-Type': 'application/json'
  },
  body: JSON.stringify(body)
});

const data = await response.json();
console.log(data);

Response

Success Response (200 OK)

200
{
  "data": {
    "id": "44196397",
    "action": "remove_from_list",
    "timestamp": "2025-10-02T09:21:27.949Z",
    "success": true,
    "metadata": {
      "user_id": "44196397",
      "list_id": "1771439393255084348"
    }
  }
}

API Playground

POST/tw-v2/interaction/remove-from-list

Sensitive Credentials Required

Requires your Twitter authToken. Use a test account.

Press ⌘ + Enter to execute

curl -X POST "https://api.tweetapi.com/tw-v2/interaction/remove-from-list" \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json"
Response

Click "Try It!" to see the response