API Keys

How to authenticate with the Whippy API.

API requests to the Whippy Public API are authenticated using API keys. Each organization using Whippy can generate multiple API keys. By default, no API key is generated, but users can create them in the Developers tab within the Settings. To make requests to the Whippy Public API, you must include an API key value for the X-Whippy-Key custom header. This header allows Whippy to identify the organization making the request.

If there is any concern that an API key may have been compromised, it can be disabled. Likewise, if needed, the key can be enabled again.

Example Request

Replace API_KEY with your organization's api key.

curl --request GET \
     --url https://api.whippy.co/v1/automations/templates \
     --header 'X-WHIPPY-KEY: API_KEY' \
     --header 'accept: application/json'