Skip to main content

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:
    In your dashboard, navigate to the "Applications" section and click on Create New Application. Provide the required details about your application.

  • Create a New Key:
    Once your application is created, proceed to generate a new key. During this process, you'll receive two sets of credentials:

    1. API Token:
      This token is immediately usable for sending API requests. Simply include it in your request headers to authenticate.

    2. App Credentials:
      These include the App ID, App Key ID, and App Key Secret. They are used if you prefer to sign your own JWT. With these credentials, you can generate custom JWTs tailored to your application's needs, such as setting specific claims or expiration times.

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

Below is an example using cURL to check the health of the Hautech API service:

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. If the API is running correctly, you should receive a response confirming the service status.

Next Steps

After setting up your environment, proceed to the Authentication section to learn how to secure your requests, or explore the Main Workflows section to start integrating key functionalities of the Hautech API into your application.