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

# Revoke Key

> Revoke an API key permanently.

The key being revoked is identified by the X-API-Key header.
This action is irreversible — the key will stop working immediately.
Any remaining prepaid balance is forfeited.



## OpenAPI

````yaml /api-reference/openapi.json post /v1/keys/revoke
openapi: 3.1.0
info:
  title: LimitGuard.ai
  description: Trust Intelligence API - Entity verification and risk scoring
  version: 0.1.0
servers:
  - url: https://api.limitguard.ai
security: []
paths:
  /v1/keys/revoke:
    post:
      summary: Revoke Key
      description: |-
        Revoke an API key permanently.

        The key being revoked is identified by the X-API-Key header.
        This action is irreversible — the key will stop working immediately.
        Any remaining prepaid balance is forfeited.
      operationId: revoke_key_v1_keys_revoke_post
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                additionalProperties: true
                type: object
                title: Response Revoke Key V1 Keys Revoke Post
      security:
        - APIKeyHeader: []
components:
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: X-API-Key

````