Hatz AI Rest API

Explore Hatz AI’s API reference. Hatz AI provides a range of software tools and libraries to accelerate your development process.

The API provides access to all the AI Models available on the Hatz AI platform, and allows to interface with the chat (called completions) and workflows / app builder. The Chat / Completions API works very similarly to the Anthropic / OpenAI Rest API, allowing you to just swap the URLs as a drop in replacement. There is also support for file upload, if you are interested in interfacing with the API and uploading files.

We also do have a Typescript SDK (Python coming soon), where you can contact the Hatz Team for access.

The URL of the API is https://ai.hatz.ai

AuthenticationCopied!

The Hatz API uses API Keys for authentication. You would need to set the X-API-Key header in your requests.

Each API Key is scoped to a specific user, so users can make their own API Key. The API Key should provide access to the apps the user has access to.

You can generate API Keys on the platform on the Hatz Admin Dashboard by navigating to the settings tab, however you can contact the Hatz team at help@hatz.ai to request an API Key for your user.

Example curl command:

curl https://ai.hatz.ai/v1/chat/models
-H 'X-API-Key: $HATZ_API_KEY'