Get a list of characters for a movie
Get a list of characters for a movie
Path parameters
-
Identifier of the movie
Format should match the following pattern:
^[A-Za-z0-9\\-]{1,100}$
.
GET
/movies/{movieId}/characters
curl \
-X GET http://api.example.com/movies/{movieId}/characters \
-H "Authorization: $API_KEY"
Response examples (200)
[
{
"characterId": "string",
"name": "string",
"playedBy": "string",
"role": "string",
"nationality": "string"
}
]
Response examples (400)
{
"message": "Error message"
}
Response examples (401)
{
"message": "Error message"
}
Response examples (403)
{
"message": "Error message"
}
Response examples (404)
{
"message": "Error message"
}
Response examples (422)
{
"message": "Error message"
}
Response examples (500)
{
"message": "Error message"
}
Response examples (502)
{
"message": "Error message"
}
Response examples (504)
{
"message": "Error message"
}