---
title: "Get Dataset History"
method: GET
path: "/felix/synthesis-log/dataset/{dataset_id}"
tags: ["felix", "synthesis-log"]
---

# Get Dataset History

`GET /felix/synthesis-log/dataset/{dataset_id}`

Get all synthesis log entries linked to a dataset.

Args:
    dataset_id: UUID of the dataset.
    auth: Authentication result.

Returns:
    All synthesis log entries for the dataset in chronological order.

Raises:
    HTTPException: If the query fails.

## Path parameters

- `dataset_id` string, required

## Response `200`

Successful Response

- SynthesisLogDatasetResponse — Response containing all synthesis log entries linked to a dataset.
  - `dataset_id` string, required
  - `entries` SynthesisLogEntry[], required
    - `id` string, required
    - `user_id` string, required
    - `dataset_id` string, nullable
    - `project_id` string, nullable
    - `session_id` string, required
    - `entry_type` 'prompt' | 'seed_generation' | 'seed_feedback' | 'prompt_update' | 'expansion' | 'finalization', required
    - `content` object, required
    - `created_at` string, date-time, required

## Other responses

- `422` — Validation Error

---

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