POST
/
3
/
list
curl --request POST \
  --url https://api.themoviedb.org/3/list \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "description": "Just an awesome list.",
  "language": "en",
  "name": "This is my awesome test list."
}'
{
  "list_id": 8504996,
  "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

This represents your session ID. Get it here

Example:

"a30ca4b889498c1eaeba29bf38bcd439b75f15f7"

Body

application/json

Response

201 - application/json

Create

The response is of type object.