API Keys
API keys are tokens for CLI tools and automation, used with the Rumpty CLI and GitHub Actions workflows. Manage them under Manage Profile → My profile → Personal API keys.
API keys are personal: they inherit your current role in each workspace and must not be shared with teammates.
warning
The token is only shown once immediately after creation. Copy it before leaving the page; it cannot be viewed again.
Create an API key
- Enter a Key name (e.g.
Laptop CLI,CI deploy,staging bot) - Set an Expiration: 30 days, 90 days, 1 year (default), 2 years, or never expires
- Click Create key
- Copy the token immediately
Existing keys
The Existing Keys panel lists all active tokens:
| Field | Details |
|---|---|
| Name | The label you gave the key |
| Prefix | First few characters of the token for identification |
| Created | Creation date and time |
| Expires | Expiry date and time, or Never |
| Last used | When the key was last used in a request |
Revoke a key
Click Revoke next to a key to immediately invalidate it. Any CLI or automation using that token will stop working.
Using an API key
API keys are used by the Rumpty CLI for authentication:
rumpty login --token <your-api-key>
They are also used as the RUMPTY_TOKEN secret in GitHub Actions deploy workflows. See Deploy for the full GitHub Actions setup.