v1

latestOpenAPI 3.0.1Vanta Terms of Service2026-07-26327517821.8 KB
Audits

List integrations for an audit

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.

get/audits/{auditId}/integrations

Path parameters

auditIdstring required

The audit ID

Query parameters

pageSizeinteger

Controls the maximum number of items returned in one response from the API.

Maximum number of results per page (1-100, default 10)

pageCursorstring

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.

Pagination cursor from previous response

searchstring

Search term for filtering by integration name

tagsMatchesAnyAuditIntegrationTag[]

Filter integrations by tag values

categoriesMatchesAnyAuditIntegrationCategory[]

Filter integrations by category values

Response

Paginated list of integrations with pagination metadata

Example response

{
  "results": {
    "data": [
      {
        "id": "github",
        "name": "GitHub",
        "tags": [
          "Vulnerabilities",
          "Code changes"
        ],
        "categories": [
          "Version control systems"
        ]
      }
    ]
  }
}