LISTS
cURL
curl --request POST \ --url https://api.themoviedb.org/3/list \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "description": "This is a guide in testing this API endpoint", "language": "en", "name": "API Documentation" } '
{ "list_id": 8504086, "status_code": 1, "status_message": "Success.", "success": true }
This endpoint is used add of movie detail to list.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
"This is a guide in testing this API endpoint"
"en"
"API Documentation"
Create
8504086
1
"Success."
true