List API clients
GET
/api/user/api-clients
const url = 'https://hitkeep.com/api/user/api-clients';const options = {method: 'GET', headers: {cookie: 'hk_token=<hk_token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://hitkeep.com/api/user/api-clients \ --cookie hk_token=<hk_token>Lists API clients for authenticated user.
Authorizations
Section titled “Authorizations ”Responses
Section titled “ Responses ”API clients
Media type application/json
Array<object>
object
created_at
string format: date-time
description
string
expires_at
string format: date-time
id
string format: uuid
instance_role
string
last_used_at
string format: date-time
name
string
owner_type
string
revoked_at
string format: date-time
site_roles
Explicit site grants. Empty means the API client has no site-scoped analytics, MCP, or ingest access.
Array<object>
object
role
string
site_id
string format: uuid
tenant_id
string format: uuid
updated_at
string format: date-time
user_id
string format: uuid
Example
[ { "owner_type": "personal" }]