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

# Revoke API Key

> Permanently revoke an API key.



## OpenAPI

````yaml DELETE /v1/api-keys/{id}
openapi: 3.0.3
info:
  title: MediAPI
  description: >-
    Media processing API — video, audio, image, and document transformations via
    simple REST calls.
  version: 1.0.0
servers:
  - url: https://api.ringbee.dev
    description: Production
security:
  - apiKey: []
paths:
  /v1/api-keys/{id}:
    delete:
      tags:
        - Account
      summary: Revoke API key
      description: Permanently revoke an API key.
      operationId: revokeApiKey
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Key revoked
components:
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: X-API-Key

````