Authentication

The Kitchen API uses API keys to authenticate requests. You can manage your API keys from Settings > API & Webhooks > API Tokens. In order to create an API key, you need to be either the owner of the Kitchen workspace, or an admin.

Your API keys are considered sensitive, so be sure to keep them secure! Do not share your secret API keys in publicly accessible areas.

Authentication to the API is performed via Bearer.

curl 'https://{workspace}.kitchen.co/api/v1/projects' \
 -H 'Accept: application/json' \
 -H 'Authorization: Bearer {AUTH_TOKEN}'
1
2
3

All API requests must be made over HTTPS. Calls made over plain HTTP will fail.