Quickstart guide
Authentication
Authenticating your requests to the API
After signing up on the app, you can find your API key in the Settings page.
API Tokens
Please pass the API key as a header with each request as follows:
'Authorization': 'Bearer <YOUR_API_KEY>'
In case of the Python SDK, you can pass in the api key via the api_key
parameter.
import honeyhive
honeyhive.api_key = 'YOUR_API_KEY'
honeyhive.openai_api_key = 'OPENAI_API_KEY'