cURL
curl --request POST \ --url https://api.themoviedb.org/4/list \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "description": "", "name": "My Cool List", "iso_3166_1": "US", "iso_639_1": "en", "public": true } '
{ "status_message": "The item/record was created successfully.", "id": 5854, "success": true, "status_code": 1 }
This endpoint is used to create a new list.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
The name of the list
A brief description of the list
Country code (e.g., US)
Language code (e.g., en)
Whether the list is public
Successful response
A message providing additional details about the response status.
ID of a list
Indicates success
A numeric code indicating the result of the request.