Skip to content

Managed secret providers

Meilisearch

Connect Meilisearch to Alter Vault for secure API access

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

PropertyValue
Provider IDmeilisearch
CategorySearch
Credential TypeAPI Key

Log in to Meilisearch Cloud

Log in to Meilisearch Cloud and open the project.

Open API keys

Open Settings > API keys.

Copy a key

Copy the Default Search API Key (read) or Default Admin API Key (read/write).

Open the Developer Portal

Go to portal.alterauth.com and navigate to the application.

Add Meilisearch

Go to Managed Secrets > Add Provider > Meilisearch.

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-PROJECT.meilisearch.io/indexes/movies/search",
grant_id="YOUR_GRANT_ID",
json={"q": "interstellar", "limit": 5},
)