The series endpoint returns the full catalogue of TV series available on the Rakcha platform, including titles, summaries, and the number of seasons.
List all series
Returns an array of all series objects. No query parameters are required.
Request
No request body or query parameters are needed.
curl --request GET \
--url https://rakcha.example.com/api/series \
--header 'Authorization: Bearer <token>'
Response fields
Returns a JSON array. Each element has the following fields:
Unique numeric identifier for the series.
A brief summary or synopsis of the series.
The total number of seasons available for the series.
Example response
[
{
"id": 1,
"title": "Breaking Bad",
"description": "A high school chemistry teacher turned methamphetamine producer partners with a former student.",
"seasons": 5
},
{
"id": 2,
"title": "Stranger Things",
"description": "When a young boy vanishes, a small town uncovers a mystery involving secret experiments and supernatural forces.",
"seasons": 4
}
]