Managed secret providers
Qdrant
Connect Qdrant to Alter Vault for secure API access
Overview
Section titled “Overview”Use Qdrant credentials to make authenticated API calls through Alter Vault without exposing API keys in code.
| Property | Value |
|---|---|
| Provider ID | qdrant |
| Category | AI |
| Credential Type | API Key |
Step 1: Get Credentials
Section titled “Step 1: Get Credentials”Log in to Qdrant Cloud
Log in to Qdrant Cloud and open the cluster.
Create an API key
Open the API Keys tab and create a key (optionally read-only or scoped to collections).
Copy the key
Copy the key — it is only shown once.
Step 2: Add to Alter Vault
Section titled “Step 2: Add to Alter Vault”Open the Developer Portal
Go to portal.alterauth.com and navigate to the application.
Add Qdrant
Go to Managed Secrets > Add Provider > Qdrant.
Enter credentials
Paste your API Key into the credential field.
Save
Click Save. You’ll receive a grant_id to use with the SDK.
Using in Code
Section titled “Using in Code”response = await alter_app.request( HttpMethod.POST, "https://YOUR-CLUSTER.cloud.qdrant.io/collections/my-collection/points/search", grant_id="YOUR_GRANT_ID", json={"vector": [0.05, 0.61, 0.76, 0.74], "limit": 5, "with_payload": True},)- The key is injected via the
api-keyheader.