POST
/
3
/
list
curl --request POST \
  --url https://api.themoviedb.org/3/list \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "description": "This contains the list of all anime, movie or TV shows",
  "language": "en",
  "name": "Anime"
}'
{
  "list_id": 8504995,
  "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

A token that represents a logged-in user's session after they have authenticated with their TMDB account.

Example:

""

Body

application/json

Response

201 - application/json

create list_id

The response is of type object.