Authentication

API requests are authenticated using API keys which are sent via the custom X-API-KEY header. Any request that doesn't include an API key will return an authentication error.

You can view and manage your API keys at the profile settings page in your Fusionbase account.

All API requests must be made over HTTPS. Calls made over plain HTTP will be redirected to HTTPS. API requests without authentication will fail.

Creating API Keys

Go to your account profile and press the Add API Key button.

Authenticate Requests

The API key is added via the x-api-key property in the request header.

curl -X GET "https://api.fusionbase.com/api/v2/stream/base/430410" \
-H 'X-API-KEY: 'YOUR_API_KEY \
-H 'Content-Type: application/json; charset=utf-8' \

Last updated

Was this helpful?