POST
/
3
/
list
Create
curl --request POST \
  --url https://api.themoviedb.org/3/list \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "description": "This is a guide in testing this API endpoint",
  "language": "en",
  "name": "API Documentation"
}'
{
  "list_id": 8504086,
  "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.

Query Parameters

session_id
string
required

Body

application/json
description
string
Example:

"This is a guide in testing this API endpoint"

language
string
Example:

"en"

name
string
Example:

"API Documentation"

Response

201 - application/json

Create

list_id
number
Example:

8504086

status_code
number
Example:

1

status_message
string
Example:

"Success."

success
boolean
Example:

true