---
title: "List ingestions"
method: GET
path: "/v1/datasets/{datasetId}/ingestions"
tags: ["Datasets"]
---

# List ingestions

`GET /v1/datasets/{datasetId}/ingestions`

Retrieves a list of ingestions events that have been created for the specified dataset. 

The returned `ingestionId` values can be used with the corresponding [ingestion details endpoint](datasets_getingestion) to retrieve more information about a specific ingestion event.

## Path parameters

- `datasetId` string, uuid, required — Unique identifier for the dataset.

## Query parameters

- `page` integer — The page number to retrieve. Pages are 1-indexed. Defaults to 1.
- `pageSize` integer — The maximum number of results to return per page. Defaults to 100.

## Response `200`

Successful response containing a list of ingestion events for the specified dataset.

- object
  - `requestId` string — Unique identifier for the request.
  - `status` string — Indicates the status of the request.
  - `pagination` Pagination — Pagination metadata for the current response.
    - `page` integer — The page number retrieved. Pages are 1-indexed.
    - `pageSize` integer — The maximum number of results to return per page.
    - `totalItems` integer — The total number of items matching the request, across all pages.
  - `ingestions` IngestionList[] — List of ingestion events.
    - `ingestionId` string, uuid — Unique identifier for the ingestion event.
    - `timestamp` string
    - `status` string — Indicates the status of the ingestion event.

## Other responses

- `400` — Error response indicating one or more request parameters are invalid.
- `401` — Error response indicating that the API key is missing or invalid.

---

[API](https://skmtc.net/databox/apis/databox-api.md) · [All operations](https://skmtc.net/databox/apis/databox-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/databox/databox-api/versions/8e7a3a444e6b/schema)
