plm = plyra memory. The live / test prefix is informational — the server does not enforce different behaviour, but it helps you track which keys belong to which environment.
Enter your email at keys.plyra.dev and receive a live API key instantly.
The key is shown once — store it in a secrets manager immediately.
keys.plyra.dev is a separate app that talks directly to the hosted
plyra-memory-server. The key it generates is ready to use immediately
with PLYRA_API_KEY.
# 1. Create a new keyNEW_KEY=$(curl -X POST .../admin/keys \ -H "Authorization: Bearer $PLYRA_ADMIN_KEY" \ -d '{"workspace_id":"acme","label":"rotated"}' | jq -r .key)# 2. Update PLYRA_API_KEY in your deployment environment# 3. Redeploy agents# 4. Verify agents are using the new key# 5. Revoke the old keycurl -X DELETE .../admin/keys/{old_key_id} \ -H "Authorization: Bearer $PLYRA_ADMIN_KEY"