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

# List Active Grants

> The destinations this agent may currently send to via an approved grant.
The interceptor caches these and lets matching sends through.



## OpenAPI

````yaml /api-reference/openapi-developer.json get /api/v1/exceptions/active
openapi: 3.1.0
info:
  title: PromptGuard Developer API
  description: >-
    Public API for developers to integrate PromptGuard security into their
    applications
  version: 1.0.0
servers:
  - url: https://api.promptguard.dev
    description: Production API
  - url: https://staging-api.promptguard.dev
    description: Staging API
  - url: http://localhost:8080
    description: Local Development
security:
  - ApiKeyAuth: []
paths:
  /api/v1/exceptions/active:
    get:
      tags:
        - shadow-exceptions
      summary: List Active Grants
      description: |-
        The destinations this agent may currently send to via an approved grant.
        The interceptor caches these and lets matching sends through.
      operationId: list_active_grants_api_v1_exceptions_active_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key
      description: >-
        PromptGuard API key for developer endpoints. Keys start with pg_live_
        and are created in the dashboard.

````