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

# Delete Cached Data



## OpenAPI

````yaml DELETE /
openapi: 3.0.0
info:
  title: APICaching.com
  version: 1.0.0
  description: API for caching your requests
servers:
  - url: https://sandbox.apicaching.io
security: []
paths:
  /:
    delete:
      summary: Delete Cached Keys
      parameters:
        - name: X-ApiCaching-Endpoint
          in: header
          required: false
          schema:
            type: string
          description: >-
            Your unique project endpoint. This is only required for this
            example. You should be accessing your unique endpoint directly,
            instead of the sandbox endpoint. If your endpoint is:
            https://my-special-endpoint.apicaching.io, set the value of this
            header to 'my-special-endpoint'.
        - name: X-ApiCaching-CacheKeys
          in: header
          required: true
          schema:
            type: array
            items:
              type: string
          description: Array of keys to be deleted
      responses:
        '200':
          description: Keys deleted successfully
          content:
            text/plain:
              schema:
                type: string
        '400':
          description: Bad Request
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/Error'
        '500':
          description: Internal Server Error
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    Error:
      required:
        - error
        - message
      type: object
      properties:
        error:
          type: integer
          format: int32
        message:
          type: string

````