Skip to main content
POST
/
4
/
list
Create
curl --request POST \
  --url https://api.themoviedb.org/4/list \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "description": "",
  "name": "My Cool List",
  "iso_3166_1": "US",
  "iso_639_1": "en",
  "public": true
}
'
{
  "status_message": "The item/record was created successfully.",
  "id": 5854,
  "success": true,
  "status_code": 1
}
You will need to have valid user access token in order to create a new list.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
name
string

The name of the list

description
string

A brief description of the list

iso_3166_1
string

Country code (e.g., US)

iso_639_1
string

Language code (e.g., en)

public
boolean

Whether the list is public

Response

200 - application/json

Successful response

status_message
string

A message providing additional details about the response status.

id
integer

ID of a list

success
boolean

Indicates success

status_code
integer

A numeric code indicating the result of the request.