Quickstart
Time estimate: ~1-3 minutes.
- Navigate to https://gate.hellas.ai/ and log in
- Click "API"
- Click "New API Key" and enter a name to create a new API key.
- Leave all configuration as default
- Record the key somewhere secure. It will look something like
hx-u-d9dea0e1-6717-4947-82a6-86ae8d71d995
You can now test your key.
Set the $HELLAS_API_KEY environment variable:
$ export HELLAS_API_KEY="hx-u-.."
Then, use curl and jq to get a list of models:
$ curl --request GET \
--url https://api.hellas.ai/v1/models \
--header "Authorization: Bearer $HELLAS_API_KEY" | jq '.data[].id'
You should see a list of models like this:
"meta-llama/llama-4-maverick-17b-128e-instruct"
"gpt-4o-audio-preview"
"gemini-1.5-flash-8b-latest"
"gemini-1.5-pro-latest"
... etc
To configure your editor to use Hellas Gate, see editors.