---
title: "List project datasets"
method: GET
path: "/v1/projects/{projectSlug}/datasets"
tags: ["Datasets"]
---

# List project datasets

`GET /v1/projects/{projectSlug}/datasets`

Returns a cursor-paginated page of datasets in the project.

## Path parameters

- `projectSlug` string, required — Project slug (human-readable identifier)

## Query parameters

- `cursor` string — Opaque cursor returned in a previous response's `nextCursor`. Omit on the first page.
- `limit` integer — Page size. Defaults to 50; max 200.
- `sortBy` 'name' | 'updatedAt' — Field to sort by. Defaults to `updatedAt`.
- `sortDirection` 'asc' | 'desc' — Sort direction. Defaults to `desc`.

## Response `200`

Page of datasets

- PaginatedDatasets
  - `items` Dataset[], required — Page of items, in the requested sort order.
    - `id` string, required — Stable dataset identifier.
    - `organizationId` string, required — Organization that owns this dataset.
    - `projectId` string, required — Project this dataset belongs to.
    - `slug` string, required — URL-safe slug derived from `name`. Unique within the project.
    - `name` string, required — Human-readable name.
    - `description` string, nullable, required — Free-form description, or `null` when not set.
    - `version` integer, required — Current dataset version.
    - `createdAt` string, required — ISO-8601 timestamp of creation.
    - `updatedAt` string, required — ISO-8601 timestamp of the last update.
  - `nextCursor` string, nullable, required — Opaque cursor for fetching the next page. `null` when there are no more pages. Pass it back in `cursor` to continue.
  - `hasMore` boolean, required — `true` when there is at least one more page after this one.

## Other responses

- `400` — Validation error
- `401` — Unauthorized
- `404` — Not found

## Changes

- **2026-05-19** `f42a1fb46380` — 1 info
  - endpoint added

[Change history](https://skmtc.dev/latitude-dev/apis/latitude/changes/v1/projects/:projectSlug/datasets/get.md)

---

[API](https://skmtc.dev/latitude-dev/apis/latitude.md) · [All operations](https://skmtc.dev/latitude-dev/apis/latitude/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/latitude-dev/latitude/revisions/7564f2e9f4e7/schema)
