Skip to main content
POST
https://api.thehyperstack.com
/
v1
/
auth
Authenticate
curl --request POST \
  --url https://api.thehyperstack.com/v1/auth
{
  "success": true,
  "message": "Authentication Successful",
  "account_name": "Acme Corp",
  "account_id": "acme-corp"
}

Description

This endpoint allows you to verify your API token and retrieve basic account information. Useful for confirming that your API key is valid and active.

Headers

Authorization
string
required
Bearer YOUR_API_TOKEN — obtainable from Hyperstack Dashboard → Settings → API Access

Success Response Fields

success
boolean
Indicates whether authentication was successful.
message
string
A human-readable confirmation message. Value: "Authentication Successful".
account_name
string
The display name of the authenticated organization.
account_id
string
The unique slug/identifier of the authenticated organization.

Responses

{
  "success": true,
  "message": "Authentication Successful",
  "account_name": "Acme Corp",
  "account_id": "acme-corp"
}
curl -X POST "https://api.thehyperstack.com/v1/auth" \
  -H "Authorization: Bearer YOUR_API_TOKEN"
Last modified on February 22, 2026