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.
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
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Create Example
The response is of type object
.