---
title: "Get a specific series by ID with user ownership validation"
method: GET
path: "/api/series/{series_id}"
tags: ["Series"]
---

# Get a specific series by ID with user ownership validation

`GET /api/series/{series_id}`

# Errors
Returns error if series not found, user access denied, or database connection error

## Path parameters

- `series_id` string, uuid, required

## Response `200`

Series retrieved

- SeriesResponse — API response model for series
  - `category` string, nullable — Category or genre of the series
  - `coverImageUrl` string, nullable — URL to the series cover image
  - `createdAt` string, date-time, nullable — Series creation timestamp
  - `description` string, nullable — Description of the series content and purpose
  - `id` string, uuid, required — Series unique identifier
  - `length` integer, nullable — Total number of posts in the series
  - `slug` string, required — SEO-friendly URL identifier for the series
  - `title` string, required — Display name of the series
  - `updatedAt` string, date-time, nullable — Series last update timestamp
  - `userId` string, uuid, required — ID of the user who owns this series

## Other responses

- `401` — Authentication required to view series
- `403` — Access denied - series does not belong to user
- `404` — Series not found or access denied
- `500` — Server error during series retrieval

## Changes

- **2025-10-08** `46cf13730883` — 1 info
  - added the optional property `length` to the response with the `200` status
- **2025-10-02** `6348840d4fcf` — 3 breaking
  - removed the required property `isMonetized` from the response with the `200` status
  - removed the required property `isPublished` from the response with the `200` status
  - removed the required property `pricingTier` from the response with the `200` status
- **2025-09-24** `143443c14b73` — 2 info
  - the endpoint scheme security `bearerAuth AND cookieAuth` was added to the API
  - the endpoint scheme security `cookieAuth` was removed from the API
- **2025-09-22** `08a2378b4e66` — 1 info
  - endpoint added
- **2025-09-01** `a2488be8a6e4` — 1 breaking
  - api path removed without deprecation

[Change history](https://skmtc.dev/patroninc/apis/patron-api/changes/api/series/:series_id/get.md)

---

[API](https://skmtc.dev/patroninc/apis/patron-api.md) · [All operations](https://skmtc.dev/patroninc/apis/patron-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/patroninc/patron-api/revisions/1583b1f4c97d/schema)
