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.
Bearer YOUR_API_TOKEN — obtainable from Hyperstack Dashboard → Settings → API Access
Success Response Fields
Indicates whether authentication was successful.
A human-readable confirmation message. Value: "Authentication Successful".
The display name of the authenticated organization.
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"