> ## Documentation Index
> Fetch the complete documentation index at: https://api.docs.dealmachine.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Remove Items from List

> Remove specific property or person IDs from a list

Remove specific property or person IDs from an existing list. Up to 10,000 IDs per request. IDs not in the list are silently ignored. FREE — no credits consumed.

<ParamField path="list_id" type="string" required>
  The list ID to remove items from.
</ParamField>

<ParamField body="ids" type="array" required>
  Array of property or person IDs to remove (1-10,000 per request).
</ParamField>

<ParamField body="id_type" type="string" default="internal_property_id">
  Type of IDs: `internal_property_id` or `internal_person_id`.
</ParamField>

<ResponseExample>
  ```json 200 Items Removed theme={null}
  {
    "data": {
      "removed": 15
    }
  }
  ```

  ```json 404 List Not Found theme={null}
  {
    "error": {
      "code": "not_found",
      "message": "No list found with ID abc-123"
    }
  }
  ```
</ResponseExample>
