---
title: "List Content Versions"
method: POST
path: "/api/v1/content/{content_id}/versions"
tags: ["Content"]
---

# List Content Versions

`POST /api/v1/content/{content_id}/versions`

List the saved versions of a content item, newest first. Each entry carries its version number, label, how it was produced, and who made it. Use it to see how a draft evolved, then get_content_version to read a specific one, or restore_content_version to go back to it.

## Path parameters

- `content_id` string, required

## Request body

- object
  - `website_id` string, required
  - `limit` integer
  - `offset` integer

## Response `200`

Success

- object
  - `versions` object[], required
    - `version_id` string, required
    - `version_number` integer, required
    - `label` string, nullable, required
    - `change_type` string, nullable, required
    - `created_at` string, required
    - `created_by_name` string, nullable, required
  - `total_count` integer, required

## Other responses

- `400` — Bad Request — validation failed
- `401` — Unauthenticated
- `403` — Forbidden
- `404` — Not Found
- `409` — Conflict
- `429` — Rate Limited
- `500` — Internal Error

---

[API](https://skmtc.net/athenahq/apis/athenahq-api.md) · [All operations](https://skmtc.net/athenahq/apis/athenahq-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/athenahq/athenahq-api/revisions/6c5d71622cb9/schema)
