Where to find your API key
Locate, copy, and rotate your Getme API key safely.
Getme issues two keys per workspace: a publishable key (safe in client-side code) and a secret key (server-only). Both live on the same screen.
Open the keys page
- Sign in to Getme.
- Open Developers → API keys.
- Click the key you want to copy. The publishable key shows in plain text; the secret key requires a re-confirmation of your password before it reveals.
Rotate a leaked key
If a secret key was pasted somewhere it should not have been (a public repo, a screenshot, a chat thread), rotate it immediately. Click Rotate next to the key — Getme issues a new one and revokes the old one within seconds.
Treat the secret key like a password. Never embed it in a frontend bundle, mobile app, or shared notebook.
Code sample
curl https://api.getmeonline.io/v1/orders \
-H "Authorization: Bearer ${GETME_SECRET_KEY}"