Limit number of catchphrases per page. Default: 10
?limit=20
Get catchphrase
GET /catchphrases/:id
Parameter
Type
Description
id
string
Required. Id of catchphrase to fetch
Add catchphrase
POST /catchphrases
{
"movieName": "AUSTIN POWERS: INTERNATIONAL MAN OF MYSTERY",
"catchphrase": "Yeah baby, yeah!",
"movieContext": "Austin Powers, conversing with his partner, Mrs. Kensington"
}
Update catchphrase
PATCH /catchphrases/:id
Parameter
Type
Description
id
string
Required. Id of catchphrase to update
{
"movieName": "AUSTIN POWERS: INTERNATIONAL MAN OF MYSTERY",
"catchphrase": "Yeah baby, yeah!",
"movieContext": "Austin Powers, conversing with his partner, Mrs. Kensington"
}
// All three fields are optional when updating