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

# Delete dataset

> Deletes a dataset and its items. Experiments already run against it keep their results.



## OpenAPI

````yaml /api-reference/openapi.json delete /v1/datasets/{id}
openapi: 3.1.0
info:
  title: Sidenet API
  version: 1.0.0
  description: >-
    Sidenet HTTP endpoints exposed by the Sidenet Studio. All routes require an
    api key that can be generated through the studio in studio.sidenet.ai.
servers:
  - url: https://api.sidenet.ai
security:
  - bearerAuth: []
paths:
  /v1/datasets/{id}:
    delete:
      tags:
        - Datasets
      summary: Delete dataset
      description: >-
        Deletes a dataset and its items. Experiments already run against it keep
        their results.
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
            example: ds_orders_v3
          description: Dataset id.
      responses:
        '200':
          description: Deleted
          content:
            application/json:
              schema:
                type: object
                properties:
                  deleted:
                    type: boolean
                  id:
                    type: string
                    format: uuid
              example:
                deleted: true
                id: ds_orders_v3
        '404':
          description: No such dataset in this organization
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                    description: The class of failure.
                  details:
                    type: string
                    description: What specifically went wrong.
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        Organization API key, generated in studio.sidenet.ai. Backend only —
        never in a browser.

````