Help

How do I get started?

Last updated

Welcome. Getting set up takes about 10 minutes.

1. Create your account

Sign up on the home page — you’ll need an email address and a password. We’ll send you a verification email; click the link to activate your account.

2. Create a project

From the dashboard, click New project and give it a name. You can have up to one project on the Free plan, five on Starter, and unlimited on Pro and above.

3. Generate an API token

If you want to use the API, head to Settings → API tokens and click Generate token. Store the token somewhere safe — we can’t show it to you again after the page reloads.

4. Make your first request

The fastest way to confirm everything works is a quick curl against the API:

curl https://api.example.com/v3/widgets \
  -H "Authorization: Bearer your-api-token"

You should get back a JSON response with an empty widgets array. From here, see the API documentation for the full reference.

Next steps