cURL
curl --request POST \ --url 'https://api.themoviedb.org/3/list/{{list_id}}/add_item' \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data @- <<EOF { "favorite": true, "media_id": "1241982'", "media_type": "tv" } EOF
{ "status_code": 12, "status_message": "The item/record was updated successfully.", "success": true }
This endpoint allows you to add a movie to your list.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
This represents the list ID. Get it here
This represents your your session Id. Get it here
"e5cb49904cfbdde4ad4fe940e84d6932572af959"
This specifies if the movie should be added to your favorite.
true
This represents the media ID. Get it here
"1241982'"
This represents the media type.
"tv"
Add Movie
12
"The item/record was updated successfully."