Skip to main content
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

GET /api/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:
id
integer
Unique numeric identifier for the series.
title
string
The name of the series.
description
string
A brief summary or synopsis of the series.
seasons
integer
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
  }
]

Build docs developers (and LLMs) love