Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions apps/docs/content/qdrant/overview.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -56,18 +56,18 @@ For assistance with the restoration process, contact Zerops support.
Qdrant can be accessed only from services within the same project, public access is not available.

### API Keys
API key authentication is required for both HTTP and gRPC API calls. Include the key in your request headers. The keys can be found in generated environment variables of the service:
API key authentication is required for both HTTP and gRPC API calls. Include the key in your request headers. The keys are automatically generated when the Qdrant service is created and can be found in the service's environment variables:

- **API Key:** Full access API key for administrative operations (creating collections, indexing)
- **Read-only API Key:** Restricted API key for search operations
- **`apiKey`:** Full access API key for administrative operations (creating collections, indexing)
- **`readOnlyApiKey`:** Restricted API key for search operations

#### HTTP API
- **Port:** `6333`
- **Connection String:** `http://${hostname}:${port}`
- **Connection String:** Available as `connectionString` environment variable or construct using `http://${hostname}:${port}`

#### gRPC API
- **Port:** `6334`
- **gRPC Connection String:** `tcp://${hostname}:${grpcPort}`
- **gRPC Connection String:** Available as `grpcConnectionString` environment variable or construct using `tcp://${hostname}:${grpcPort}`

## Support

Expand Down