Verify password for a password-protected retriever.
Allows the frontend to check if a password is valid before attempting to execute a password-protected retriever. Returns the public API key if the password is valid.
Authentication:
Use Case:
Response:
valid: Whether the password is correctpublic_api_key: The API key to use for execute/interact endpoints (only if valid)Example:
curl -X POST "https://api.mixpeek.com/v1/public/retrievers/private-search/verify" \
-H "Content-Type: application/json" \
-d '{"password": "secret123"}'
Response if valid:
{
"valid": true,
"public_api_key": "prk_abc123..."
}
Response if invalid:
{
"valid": false,
"public_api_key": null
}
Documentation Index
Fetch the complete documentation index at: https://docs.mixpeek.com/docs/llms.txt
Use this file to discover all available pages before exploring further.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Public name of the published retriever
Request to verify password for a password-protected retriever.
The password to verify against the retriever's password
1