Get an API key
Create a new API key in the Gizmo dashboard.Authenticate HTTP Requests
Simply pass the API key in theAuthorization header using the Bearer scheme.
Authenticate with the Gimzo SDK
Gizmo publishes type-safe, lightweight SDKs for Typescript and Python.Install the SDK
- npm
 pnpm
bun
pypi
Authenticate with Environment Variables
Set theGIZMO_API_KEY environment variable to your API key you created in the Gizmo dashboard. The SDK will automatically use this environment variable to authenticate your requests.
(Optional) Pass in the API key directly
As an alternative, you can pass the API key directly to the SDK constructor.This method is great for local testing and development, but it is not recommended for production environments. Never commit your API key to version control.