---
title: "Gets a list of AI audits."
method: GET
path: "/aiaudits"
tags: ["AI"]
---

# Gets a list of AI audits.

`GET /aiaudits`

Retrieves a paginated list of AI audit records for the authenticated customer.

## Query parameters

- `page_size` integer
- `page_token` string
- `aicall_id` string, uuid
- `ai_id` string, uuid

## Response `200`

A list of AI audits.

- object
  - `next_page_token` string — Cursor token for the next page of results. Pass this value as the page_token parameter in the next request.
  - `result` AIManagerAIAudit[]
    - `id` string, uuid — The unique identifier of the audit.
    - `customer_id` string, uuid — The customer who owns this audit.
    - `aicall_id` string, uuid — The AI call that was audited. Returned from the `GET /aicalls` response.
    - `ai_id` string, uuid — The AI participant that was evaluated. Returned from the `GET /ais` response.
    - `prompt_history_id` string, uuid — The prompt version active during the call.
    - `status` 'progressing' | 'completed' | 'failed' — Status of the AI audit.
    - `overall_score` integer, nullable — Overall score (1-5) independently assessed by the LLM. Null until completed.
    - `evaluation` object, nullable — Full structured evaluation output. Null until completed.
    - `message_ids` string[], nullable — Ordered list of message IDs (newest-first) that were evaluated by Gemini. Null while progressing, on failure, or for audits completed before this feature. Present and non-empty on successful completion for calls with messages.
    - `language` string — BCP47 language code used for audit output.
    - `error` string — Failure reason if status is failed.
    - `tm_create` string, date-time — Timestamp when the audit was created.
    - `tm_update` string, date-time, nullable — Timestamp when the audit was last updated.
    - `tm_delete` string, date-time, nullable — Timestamp when the audit was deleted.

## Other responses

- `401` — Authentication required (UNAUTHENTICATED).
- `500` — Internal error (INTERNAL).

---

[API](https://skmtc.net/voipbin/apis/voipbin-api.md) · [All operations](https://skmtc.net/voipbin/apis/voipbin-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/voipbin/voipbin-api/revisions/79e779080bcc/schema)
