Getting your API key
An API key lets you convert images programmatically. Here’s how to get one.
Steps
- Create an account at Sign Up. All you need is an email address — we use passwordless sign-in codes.
- Go to your dashboard at API Keys.
- Click “Generate API Key”. Your key will be shown once — copy it immediately.
- Store it securely. The key starts with
kp_followed by 40 hex characters. We store only a SHA-256 hash, so we can’t recover it if you lose it.
Key details
- Keys are free with no credit card required.
- Each key has 30 requests/minute and 500 requests/day limits.
- Anonymous (no-key) requests are limited to 10/minute and 50/day.
- You can generate multiple keys and revoke them individually.
- API keys are passed via the
X-API-Keyheader.
Security
- Never commit API keys to version control.
- Use environment variables to store keys in your application.
- Revoke compromised keys immediately from your dashboard.
Thanks for your feedback!