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

# Delete a specific dataset file



## OpenAPI

````yaml delete /v1/datasets/{dataset_name}
openapi: 3.0.0
info:
  title: Datasets API
  version: 1.0.0
  description: API for managing dataset files
servers: []
security: []
paths:
  /v1/datasets/{dataset_name}:
    delete:
      tags:
        - Datasets
      summary: Delete a specific dataset file
      parameters:
        - name: dataset_name
          in: path
          required: true
          schema:
            type: string
      responses:
        '204':
          description: Dataset deleted successfully
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/NotFound'
      security:
        - ApiKeyAuth: []
components:
  responses:
    Unauthorized:
      description: Unauthorized
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
    NotFound:
      description: Resource not found
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
  schemas:
    ErrorResponse:
      type: object
      properties:
        status:
          type: integer
        message:
          type: string
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````