CaptureKit is moving to a new dashboard

We are migrating CaptureKit to a new platform at app.capturekit.dev. Learn what changes, what stays the same, and how to migrate your API calls.
We are moving CaptureKit to a brand new platform. The new dashboard is now live at app.capturekit.dev and brings a better experience for managing your API keys, projects, and usage.
This post covers what is changing, what stays the same, and the exact steps to migrate your API calls.
What's changing?
New dashboard
The dashboard that was previously part of this website has been replaced by a dedicated application at app.capturekit.dev.
- New sign-ups now happen on app.capturekit.dev/register
- Login for the new platform is at app.capturekit.dev/login
- Registration on the old website is no longer available
New API format
The API base URL remains https://api.capturekit.dev, but the endpoint format is changing. Two things to update:
- Add
/v1to the path -- all endpoints now live under/v1/ - Replace
access_keywithx_api_key-- the query parameter name has changed
You will get a new API key from the new dashboard at app.capturekit.dev.
Billing
Stripe billing has been moved to the new dashboard. The old Stripe setup is no longer accepting new subscriptions. Existing subscriptions remain active and will continue to be billed as usual until you migrate.
How to migrate your API calls
The migration is straightforward. Here is what changes for each endpoint:
Screenshot API
Before:
GET https://api.capturekit.dev/v1/capture?access_key=YOUR_OLD_KEY&url=https://www.example.com
After:
GET https://api.capturekit.dev/v1/capture?x_api_key=YOUR_NEW_KEY&url=https://www.example.com
Content API
Before:
GET https://api.capturekit.dev/v1/content?access_key=YOUR_OLD_KEY&url=https://www.example.com
After:
GET https://api.capturekit.dev/v1/content?x_api_key=YOUR_NEW_KEY&url=https://www.example.com
AI Content API
Before:
GET https://api.capturekit.dev/analyze?access_key=YOUR_OLD_KEY&url=https://www.example.com
After:
GET https://api.capturekit.dev/v1/analyze?x_api_key=YOUR_NEW_KEY&url=https://www.example.com
Summary of changes
| Old format | New format | |
|---|---|---|
| Base path | /capture, /content, /analyze | /v1/capture, /v1/content, /v1/analyze |
| Auth parameter | access_key | x_api_key |
| API key | From old dashboard | From app.capturekit.dev |
All other query parameters (url, format, width, include_markdown, etc.) remain exactly the same.
What stays the same?
Your old API calls are not broken. The legacy endpoints and access keys continue to work during the transition period, so you can migrate at your own pace.
- The API base URL is still
https://api.capturekit.dev - All query parameters (except the auth key) are unchanged
- Response formats are identical
- Zapier, Make, n8n, and other integrations keep working with the old format for now
- The documentation at docs.capturekit.dev is still the reference
Migration checklist
- Create your account on app.capturekit.dev/register
- Get your new API key from the dashboard
- Update your API calls: add
/v1and replaceaccess_keywithx_api_key - Test your integration
- Once confirmed, you are done
Need help?
If you have any questions or need assistance with the migration:
- Open a chat using the widget at the bottom-right of the screen
- Send us an email at josselin@capturekit.dev
- Open a support ticket on the new dashboard and we will get back to you within 24 hours
We will walk you through the migration if needed. Do not hesitate to reach out.
Ready to get started with CaptureKit?
Start capturing screenshots and extracting content today. Get started for free.
Get StartedYou Might Also Like
How to Run Puppeteer on AWS Lambda
Learn how to set up and run Puppeteer on AWS Lambda for serverless web scraping, including a working boilerplate with stealth plugins and automated deployment.
Everything You Need To Know About A Screenshot (HTML Rendering) API
Understand how a Screenshot (HTML Rendering) API works, its use cases, and how it helps capture full-page website snapshots automatically from any URL.
Sitemap Support, Zapier integration, and Storage Flexibility
Learn about new features in CaptureKit based on user feedback: sitemap extraction, Zapier integration for no-code automation, and storage endpoint support.