Getting Started

This section provides you with everything you need to set up your environment and begin integrating with the Hautech API. Follow the steps below to register your account, obtain credentials, and make your first API call.

Setup Instructions

1. Register an account

Visit the Hautech Developer Portal and sign up for an account. Once registered, log in to your dashboard to manage your API credentials.

2. Top up your balance

After registering, top up your balance via the developer portal dashboard.

3. Obtain your API credentials

After logging in, follow these steps to obtain your API credentials:

  • Create a new application: Navigate to the Applications section and click Create New Application. Provide the required details about your application.
  • Create a new key: Once your application is created, generate a new key. You will receive two sets of credentials:
    1. API Token: Immediately usable for sending API requests. Include it in your request headers to authenticate.
    2. App Credentials: Consist of the App ID, App Key ID, and App Key Secret. Use these if you prefer to sign your own JWT.

4. Configure your environment

Set up your development environment for making HTTP requests. You can use tools like cURL, Postman, or integrate the API directly into your application using your preferred programming language.

Quick start example

Check the health of the Hautech API service with cURL:

curl -X GET "https://api.hautech.ai/v1/accounts/self" \
  -H "Authorization: Bearer <your_api_token>"

Replace <your_api_token> with your actual API token. A successful request confirms connectivity and returns your account status.

Next steps

After setting up your environment, continue exploring: