You need to top up certain amount to access the Haiper APIs.

Getting your API key

Get an API key from https://haiper.ai/haiper-api, and use the key as Bearer token in the HTTP header to call any of the APIs.

Example

All API endpoints are authenticated using Bearer tokens and picked up from the specification file.

curl --request GET \
  --url http://api.haiper.ai/path-of-the-api \
  --header 'Content-Type: application/json' \
  --header 'Authorization: Bearer <token>' \