API keys
API keys are created and managed from your dashboard. Each key:- Begins with the prefix
sk-pr-. - Belongs to your organization – usage and credits are shared across all of your organization’s keys.
- Is shown only once, at creation. ParseRouter stores a hash, not the key itself, so it can’t be recovered later.
Making an authenticated request
Pass your key in theAuthorization header using the Bearer scheme:
Rotating and revoking keys
You can create multiple keys and revoke any of them at any time from the dashboard – useful for rotating a key or isolating different environments (for example, separate keys for staging and production). Revoking a key takes effect immediately: any request using it will be rejected. To rotate without downtime, create the new key first, deploy it, then revoke the old one.Authentication errors
The
Authorization header is missing, malformed, or the key is invalid or revoked. Check that you’re sending Authorization: Bearer sk-pr-... with a current key.