cURL
curl --request POST \ --url https://api.themoviedb.org/3/list \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "name": "This is my awesome test list", "description": "Just an awesome list", "language": "en" } '
{ "success": true, "status_code": 1, "status_message": "Success", "list_id": 8504752 }
This endpoint is used to create a list.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
The session ID for user authentication
The request body containing details for creating a list.
The name of the list.
A short description of the list.
The language code (e.g., "en" for English).
Successful
A unique identifier for the list item
Indicates that the action was completed without any errors
Indicates whether the operation was successful
Indicates success