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

Authorizations

X-API-Key
string
header
required

Your API key

Body

application/json
name
string
required

Name of the list

Twitter auth cookie

proxy
string
required

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

description
string

Description of the list

is_private
boolean
default:false

Whether the list is private (default: false)

Response

List created

status
string

Response status

Example:

"success"

msg
string

Response message

data
any

Response data