Skip to content

Managed secret providers

Qdrant

Connect Qdrant to Alter Vault for secure API access

Use Qdrant credentials to make authenticated API calls through Alter Vault without exposing API keys in code.

PropertyValue
Provider IDqdrant
CategoryAI
Credential TypeAPI Key

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.

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.

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-key header.