Skip to main content
Follow these steps to get your first integration up and running.

1. Create an API Key

First, you’ll need an account to generate API credentials.
1

Sign Up

Head over to app.outkit.dev and create an account.
2

Navigate to Developers

Go to your settings and click on the API Keys section.
3

Copy your Key

Click Generate Key and save it somewhere secure. You won’t be able to see it again.

2. Make your first request

You can test your API key against our endpoint using cURL:
curl --request GET \
  --url https://api.outkit.dev/v1/health \
  --header 'Authorization: Bearer YOUR_API_KEY'
If everything is configured correctly, you’ll see a successful 200 OK response!