Multiple authentication schemes in the API Explorer

The API Explorer now supports multiple authentication schemes and combinations of authentication schemes for OpenAPI specs.

First, configure your OpenAPI spec with multiple security options:

openapi.yml
1/plant/search/status:
2 get:
3 tags:
4 - plant
5 summary: Search plants by status
6 description: Filter plants based on their current status.
7 operationId: searchPlantsByStatus
8 security:
9 - bearerAuth: [] # Option 1: Bearer token only (OR)
10 - basicAuth: [] # Option 2: Basic auth AND API key (combined)
11 apiKey: []

Then, the API Explorer automatically displays all available authentication options in a dropdown menu, allowing users to select and configure their preferred authentication method before sending requests.

Authentication dropdown in the API Explorer
Authentication dropdown in the API Explorer

Learn more about configuring authentication in the API Explorer documentation.