Skip to content

Introduction

Heavstal Tech™ provides a suite of high-performance APIs designed to empower the next generation of applications. From conversational AI to cryptographic security, our endpoints are built for speed, reliability, and ease of use.

All API requests require an API Key. You can generate one in your Credentials Dashboard.

Authenticate by passing the key in the x-api-key header.

Terminal window
curl -X POST https://heavstal.com.ng/api/v1/jeden \
-H "Content-Type: application/json" \
-H "x-api-key: ht_live_xxxxxxxxxxxxxxxx" \
-d '{"prompt": "Hello"}'

All endpoints live under:

https://heavstal.com.ng/api/v1

All responses are returned in JSON format.

{
"status": "success",
"creator": "Heavstal Tech",
"data": { ... }
}
{
"error": "Short error message",
"details": "Detailed explanation"
}