# Datasets

This section describes API endpoints to manage Datasets.

Dataset is a storage for structured data, where each record stored has the same attributes, such as online store products or real estate offers. You can imagine it as a table, where each object is a row and its attributes are columns. Dataset is an append-only storage - you can only add new records to it but you cannot modify or remove existing records. Typically it is used to store crawling results.

For more information, see the [Datasets documentation](https://docs.apify.com/platform/storage/dataset).

note

Some of the endpoints do not require the authentication token, the calls are authenticated using the hard-to-guess ID of the dataset.

<!-- -->

## [Get list of datasets](https://pr-2482.preview.docs.apify.com/api/v2/datasets-get)

[/datasets](https://pr-2482.preview.docs.apify.com/api/v2/datasets-get)

## [Create dataset](https://pr-2482.preview.docs.apify.com/api/v2/datasets-post)

[/datasets](https://pr-2482.preview.docs.apify.com/api/v2/datasets-post)

## [Get dataset](https://pr-2482.preview.docs.apify.com/api/v2/dataset-get)

[/datasets/{datasetId}](https://pr-2482.preview.docs.apify.com/api/v2/dataset-get)

## [Update dataset](https://pr-2482.preview.docs.apify.com/api/v2/dataset-put)

[/datasets/{datasetId}](https://pr-2482.preview.docs.apify.com/api/v2/dataset-put)

## [Delete dataset](https://pr-2482.preview.docs.apify.com/api/v2/dataset-delete)

[/datasets/{datasetId}](https://pr-2482.preview.docs.apify.com/api/v2/dataset-delete)

## [Get dataset items](https://pr-2482.preview.docs.apify.com/api/v2/dataset-items-get)

[/datasets/{datasetId}/items](https://pr-2482.preview.docs.apify.com/api/v2/dataset-items-get)

## [Get dataset items headers](https://pr-2482.preview.docs.apify.com/api/v2/dataset-items-head)

[/datasets/{datasetId}/items](https://pr-2482.preview.docs.apify.com/api/v2/dataset-items-head)

## [Store items](https://pr-2482.preview.docs.apify.com/api/v2/dataset-items-post)

[/datasets/{datasetId}/items](https://pr-2482.preview.docs.apify.com/api/v2/dataset-items-post)

## [Get dataset statistics](https://pr-2482.preview.docs.apify.com/api/v2/dataset-statistics-get)

[/datasets/{datasetId}/statistics](https://pr-2482.preview.docs.apify.com/api/v2/dataset-statistics-get)
