POST
/
3
/
list
Create
curl --request POST \
  --url https://api.themoviedb.org/3/list \
  --header 'Content-Type: application/json' \
  --data '{
  "description": "Just an awesome list.",
  "language": "en",
  "name": "The most amazing List."
}'
{
  "list_id": 8505719,
  "status_code": 1,
  "status_message": "Success.",
  "success": true
}

Query Parameters

session_id
string
Example:

"596cf761bccb080266249540bcdc13a0ea708109"

Body

application/json
description
string
Example:

"Just an awesome list."

language
string
Example:

"en"

name
string
Example:

"The most amazing List."

Response

201 - application/json

Create

list_id
number
Example:

8505719

status_code
number
Example:

1

status_message
string
Example:

"Success."

success
boolean
Example:

true