---
title: "Get Agent Dataset"
method: GET
path: "/api/v2/projects/{project_id}/agent-datasets/{dataset_id}"
tags: ["Agent Datasets"]
---

# Get Agent Dataset

`GET /api/v2/projects/{project_id}/agent-datasets/{dataset_id}`

Retrieve an agent dataset's metadata by ID. Use to check dataset configuration or compatible agents.

## Path parameters

- `project_id` string, required
- `dataset_id` string, required

## Response `200`

AgentDatasetResponse(id: uuid.UUID, name: str, description: Optional[str], compatible_agent_ids: list[uuid.UUID], tags: list[server.api_routes.agent_datasets_api_v2.TagResponse] = None)

- object
  - `id` string, uuid, required
  - `name` string, required
  - `description` string, nullable, required
  - `compatible_agent_ids` string[], required
  - `tags` TagResponse[]
    - `id` string, required
    - `name` string, required
    - `color` string, required
    - `association_count` integer

---

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