> ## Documentation Index
> Fetch the complete documentation index at: https://docs.gu1.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Get headless enrichment execution by id

> Returns one headless audit row by UUID, including merged resultSummary when cache still exists. See request schema, response codes, and authentication notes.

<Note>
  Part of the **headless** flow under **`/integration-execution`**. The `id` is the audit row UUID from [List headless executions](/en/api-reference/integrations/headless-executions).
</Note>

## Overview

Returns **one** audit row by UUID, including merged **`resultSummary`** when the row is successful and a cache entry still exists (hydrates legacy audit rows that stored only a short summary).

## URL

```
GET https://api.gu1.ai/integration-execution/headless-executions/item/{auditId}
```

## Path Parameters

<ParamField path="auditId" type="uuid" required>
  The `id` field from `headless_enrichment_execution_audit` (returned in list items).
</ParamField>

## Response

<ResponseField name="success" type="boolean">`true` when found.</ResponseField>

<ResponseField name="item" type="object">
  Full audit fields for the row, including **`resultSummary`** (from `result_summary_json`, possibly enriched from `headless_enrichment_cache` when applicable). On successful enrichments, `resultSummary` may include **`result`** with **`raw`** and **`mapped`** (same envelope as the execute endpoint).
</ResponseField>

## Errors

**404** if the id does not exist or does not belong to the organization.
