# Datasets - Introduction

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-2338.preview.docs.apify.com/api/v2/datasets-get.md)

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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