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": "",
  "iso_3166_1": "US",
  "iso_639_1": "en",
  "name": "My Cool List",
  "public": true
}'
{
  "id": 8516326,
  "status_code": 1,
  "status_message": "Success.",
  "success": true
}

Authorizations

Authorization
string
header
required

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

Body

application/json
description
string
Example:

""

iso_3166_1
string
Example:

"US"

iso_639_1
string
Example:

"en"

name
string
Example:

"My Cool List"

public
boolean
Example:

true

Response

201 - application/json

Create

id
number
Example:

8516326

status_code
number
Example:

1

status_message
string
Example:

"Success."

success
boolean
Example:

true