> ## Documentation Index
> Fetch the complete documentation index at: https://docs.genai.scale.com/llms.txt
> Use this file to discover all available pages before exploring further.

> A Dataset Task represents an individual unit of data in a dataset.

# Dataset task

Scale API offers following endpoints to download dataset tasks:

<AccordionGroup>
  <Accordion title="Retrieve a single dataset task by identifiers">
    Check out the [Retrieve a Dataset Task](/v2/datasets/task) docs on how to get a single dataset task by its identifiers.
  </Accordion>

  <Accordion title="List all dataset tasks by search parameters">
    Check out the [Get Multiple Dataset Tasks](/v2/datasets/tasks) docs to learn more about how to download multiple dataset tasks by different parameters like dataset, delivery, or delivery date.
  </Accordion>

  <Accordion title="Download dataset tasks in a delivery">
    Check out the [Download dataset tasks in a delivery](/v2/datasets/delivery) docs to download tasks in a specific delivery.
  </Accordion>
</AccordionGroup>

<ResponseExample>
  ```json Dataset Task theme={null}
  {
    "task_id": "task_123",
    "delivery": "delivery_123",
    "dataset": "dataset_123",
    "response": {
      "key_1": "value_1",
      "key_2": "value_2",
    }
  }
  ```
</ResponseExample>
