cURL
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": 8506313, "status_code": 1, "status_message": "Success.", "success": true }
This enpoint adds a movie to the list.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
"Just an awesome list."
"en"
"This is my awesome test list."
Create Example
8506313
1
"Success."
true