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

# Create Dataset

> Endpoint to create a new dataset on toolzz analytics

```json Request Exemple theme={null}
{
  "name": "string",
  "description": "string",
  "metadata": null
}
```

<Expandable title="Payload">
  <ResponseField name="name" type="string" required>
    Name of the entity.
  </ResponseField>

  <ResponseField name="description" type="string" required>
    Description of the entity.
  </ResponseField>

  <ResponseField name="metadata" type="object">
    Metadata associated with the entity (optional).
  </ResponseField>
</Expandable>

***

## Response Description

Below you will see the description of the create dataset response

<ResponseField name="id" type="string" required>
  Unique identifier for the entity.
</ResponseField>

<ResponseField name="name" type="string" required>
  Name of the entity.
</ResponseField>

<ResponseField name="description" type="string" required>
  Description of the entity.
</ResponseField>

<ResponseField name="metadata" type="null">
  Metadata associated with the entity (optional).
</ResponseField>

<ResponseField name="projectId" type="string" required>
  Unique identifier for the project associated with the entity.
</ResponseField>

<ResponseField name="createdAt" type="Date" required>
  Timestamp indicating when the entity was created.
</ResponseField>

<ResponseField name="updatedAt" type="Date" required>
  Timestamp indicating when the entity was last updated.
</ResponseField>
