Skip to main content
PATCH
/
twitter
/
lists
/
{list_id}
Update List
curl --request PATCH \
  --url https://api.apitwitter.com/twitter/lists/{list_id} \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "cookie": "<string>",
  "proxy": "<string>",
  "name": "<string>",
  "description": "<string>",
  "is_private": true
}
'
{
  "status": "success",
  "msg": "List updated"
}

Authorizations

X-API-Key
string
header
required

Your API key

Path Parameters

list_id
string
required

ID of the list to update

Body

application/json

Twitter auth cookie

proxy
string
required

Proxy URL to use for the request (HTTP or SOCKS5)

name
string

New name for the list

description
string

New description for the list

is_private
boolean

Updated privacy setting

Response

List updated

status
string

Response status

Example:

"success"

msg
string

Response message

data
any

Response data