---
title: "List team API clients REST API | HitKeep"
description: "Reference for the HitKeep REST API operation List team API clients, including request parameters, responses, and authentication notes."
canonical: "https://hitkeep.com/api/operations/apiuserteamsidapi-clients/get/"
---

# List team API clients REST API

GET

/api/user/teams/{id}/api-clients

FetchcURL

```
const url = 'http://127.0.0.1:25737/api/user/teams/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/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 http://127.0.0.1:25737/api/user/teams/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/api-clients \
  --cookie hk_token=<hk_token>
```

-

Lists team-owned API clients for a team owner or admin.

## Authorizations

- **[cookieAuth](https://hitkeep.com/api/#cookieauth)**

## Parameters

### Path Parameters

**id**

required

string format: uuid

## Responses

### 200

Team API clients

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

Allowed values: personal team

**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"
  }
]
```

[Previous Update team](https://hitkeep.com/api/operations/apiuserteamsid/patch/)[Next Create team API client](https://hitkeep.com/api/operations/apiuserteamsidapi-clients/post/)
