---
title: "List integrations for an audit"
method: GET
path: "/audits/{auditId}/integrations"
tags: ["Audits"]
---

# List integrations for an audit

`GET /audits/{auditId}/integrations`

Retrieves integration population data for an audit.

This endpoint provides access to integration records visible to auditors
during an audit engagement. Integrations represent connected services
(e.g., GitHub, AWS, Slack) that provide data for the audit.

Supports filtering by:
- `search`: Searches integration names (case-insensitive)
- `tagsMatchesAny`: Filters by integration tag (ACCESS, COMPUTERS, etc.)
- `categoriesMatchesAny`: Filters by category (CLOUD_PROVIDER, HR_PROVIDER, etc.)

Uses cursor-based pagination. To paginate:
1. Make initial request with desired `pageSize`
2. Check `results.pageInfo.hasNextPage`
3. Use `results.pageInfo.endCursor` as `pageCursor` for next request

Results are sorted by integration display name (ascending). This sort order
is fixed and cannot be customized via query parameters.

Rate limit: 10 requests / minute.

## Path parameters

- `auditId` string, required

## Query parameters

- `pageSize` integer — Controls the maximum number of items returned in one response from the API.
- `pageCursor` string — A marker or pointer, telling the API where to start fetching items for the subsequent page in a paginated dataset. Note that the requested page will not include the item that corresponds to this cursor but will start from the one immediately after this cursor.
- `search` string
- `tagsMatchesAny` AuditIntegrationTag[]
- `categoriesMatchesAny` AuditIntegrationCategory[]

## Response `200`

Paginated list of integrations with pagination metadata

- PaginatedResponseAuditIntegration
  - `results` object, required
    - `data` AuditIntegration[], required
      - `id` string, required — Integration identifier.
      - `name` string, required — Display name of the integration.
      - `tags` string[] — Integration tag display names describing what data this integration provides.
      - `categories` string[] — Category display names describing what the integration is used for.
    - `pageInfo` PageInfo, required — Provides information about the pagination of a dataset.
      - `endCursor` string, nullable, required — The cursor that points to the end of the current page, or null if there is no such cursor.
      - `hasNextPage` boolean, required — Indicates if there is another page after the current page.
      - `hasPreviousPage` boolean, required — Indicates if there is a page before the current page.
      - `startCursor` string, nullable, required — The cursor that points to the start of the current page, or null if there is no such cursor.

---

[API](https://skmtc.net/vanta/apis/build-integrations.md) · [All operations](https://skmtc.net/vanta/apis/build-integrations/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/vanta/build-integrations/revisions/6c1f7590538b/schema)
