Skip to content

Reference

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.

Enter the deployment endpoint

Paste your Cluster endpoint — copy it from the Qdrant Cloud console’s cluster details. Alter derives this credential’s allowed hosts from that exact host, so proxied calls can only ever reach your deployment. The allowlist cannot be widened or edited separately; rotate the credential with a new endpoint to retarget it.

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.

Alter policy rules can target these attested operations and families for operation-level and parameter-aware controls.

Operation IDFamiliesMethodProvider pathNotes
get_collectionsreadGET/collections
get_collectionreadGET/collections/{collection_name}
collection_existsreadGET/collections/{collection_name}/exists
create_collectionwritePUT/collections/{collection_name}
update_collectionwritePATCH/collections/{collection_name}
delete_collectiondeleteDELETE/collections/{collection_name}
upsert_pointswritePUT/collections/{collection_name}/points
update_vectorswritePUT/collections/{collection_name}/points/vectors
delete_vectorsdeletePOST/collections/{collection_name}/points/vectors/delete
get_pointreadGET/collections/{collection_name}/points/{id}
get_pointsreadPOST/collections/{collection_name}/points
scroll_pointsreadPOST/collections/{collection_name}/points/scroll
count_pointsreadPOST/collections/{collection_name}/points/count
delete_pointsdeletePOST/collections/{collection_name}/points/delete
search_pointsreadPOST/collections/{collection_name}/points/searchserved by the provider but absent from its published spec
search_batch_pointsreadPOST/collections/{collection_name}/points/search/batchserved by the provider but absent from its published spec
search_point_groupsreadPOST/collections/{collection_name}/points/search/groupsserved by the provider but absent from its published spec
query_pointsreadPOST/collections/{collection_name}/points/query
query_batch_pointsreadPOST/collections/{collection_name}/points/query/batch
query_points_groupsreadPOST/collections/{collection_name}/points/query/groups
recommend_pointsreadPOST/collections/{collection_name}/points/recommendserved by the provider but absent from its published spec
recommend_batch_pointsreadPOST/collections/{collection_name}/points/recommend/batchserved by the provider but absent from its published spec
discover_pointsreadPOST/collections/{collection_name}/points/discoverserved by the provider but absent from its published spec
facetreadPOST/collections/{collection_name}/facet
set_payloadwritePOST/collections/{collection_name}/points/payload
overwrite_payloadwritePUT/collections/{collection_name}/points/payload
delete_payloaddeletePOST/collections/{collection_name}/points/payload/delete
clear_payloaddeletePOST/collections/{collection_name}/points/payload/clear
update_aliasesdelete, writePOST/collections/aliases
get_collection_aliasesreadGET/collections/{collection_name}/aliases
get_collections_aliasesreadGET/aliases
create_field_indexwritePUT/collections/{collection_name}/index
delete_field_indexdeleteDELETE/collections/{collection_name}/index/{field_name}
create_snapshotwritePOST/collections/{collection_name}/snapshots
list_snapshotsreadGET/collections/{collection_name}/snapshots
delete_snapshotdeleteDELETE/collections/{collection_name}/snapshots/{snapshot_name}
recover_from_snapshotwritePUT/collections/{collection_name}/snapshots/recover

Report an issue with this page

Necessary

Required for sign-in, security, authorization, and remembering your choices.

Always active

Analytics

Helps us understand which product and documentation features are useful.

Performance diagnostics

Uses performance tracing and privacy-masked session replay to diagnose problems.

You can change these choices at any time from Cookie settings.