Skip to main content
Use this endpoint to retrieve the core details of the organization associated with your Bearer token. The response includes the organization’s unique identifier and its current credit balance. Credits represent your available usage capacity — contact the Hackrate team to top up your balance.

Endpoint

GET https://api-admin.hackgate.io/api/organization

Request

Authorization
string
required
Bearer token. See Authentication.

Response

id
string
The unique identifier for your organization.
credits
number
The number of credits currently available to your organization. Credits are consumed as researcher traffic passes through HackGATE.
To purchase additional credits, contact support@hckrt.com or sales@hckrt.com.

Example

curl https://api-admin.hackgate.io/api/organization \
  -H "Authorization: Bearer <token>"
{
  "id": "org_xyz",
  "credits": 5000
}