Source: https://atomicwork-preview.docs-staging.pageloop.ai/api-reference/accessmanagement/getapi-v-1-iga-apps

# List available apps

GET `https://{tenant}.atomicwork.com/api/v1/iga/apps`

List the identity resource apps connected to your workspace. This is the starting point for grant discovery — each app represents a connected identity provider (Okta, Azure AD, JumpCloud, Google Workspace, etc.) and contains entitlements that can be granted to users.

**Typical flow:** Call this endpoint first to get `app_id` values, then call `GET /iga/entitlements?app_id=\{id\}` to browse the entitlements (groups, roles, licenses) available in each app.

**Pagination:** Supports `page` and `per_page` (default 25). Use `search_key` to filter apps by name.

## Authorization

#### X-Api-Key (header, string, required)

## Headers

#### X-Workspace-Id (header, string)

## Query Parameters

#### search\_key (query, string)

Filter apps by name (partial match).

#### page (query, integer)

Page number (1-indexed). Default 1.

#### per\_page (query, integer)

Results per page (default 25).

## Response

#### 200

Successful response

#### Request

```bash cURL
curl -X GET 'https://{tenant}.atomicwork.com/api/v1/iga/apps' \
  -H 'X-Api-Key: <api-key>'
```

```javascript JavaScript
const res = await fetch('https://{tenant}.atomicwork.com/api/v1/iga/apps', {
  method: 'GET',
  headers: {
    'X-Api-Key': '<api-key>',
  },
});
const data = await res.json();
```

```python Python
import requests

res = requests.get(
    'https://{tenant}.atomicwork.com/api/v1/iga/apps',
    headers={'X-Api-Key': '<api-key>'}
)
data = res.json()
```
