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

# Get Pitch Audit Subject Report

> Read a competitor or co-competitor view derived from one Pitch Audit

A subject report pivots the same Pitch Audit evidence around one detected competitor or co-competitor. It does not create a second audit or regenerate any data.

<ParamField header="Authorization" type="string" required>
  Bearer API token. Example: `Bearer qw-api-xxx`
</ParamField>

### Path Parameters

<ParamField path="auditId" type="string" required>
  Parent Pitch Audit ID.
</ParamField>

<ParamField path="subjectId" type="string" required>
  Value returned by `competitors[].subjectId`, `availableSubjects[].id`, or `coCompetitors[].subjectId`.
</ParamField>

### Query Parameters

<ParamField query="includeAnswers" type="boolean" default="false">
  Include full AI answer text. The bounded report summary is returned by default.
</ParamField>

<ParamField query="includeCoCompetitorScores" type="boolean" default="false">
  Attach full score summaries to all co-competitors of the selected subject.
</ParamField>

### Example Request

```bash theme={null}
curl "https://www.qwairy.co/api/v1/pitch-audits/8a218180-6dd7-43c7-a481-f6a1cc72dfd8/reports/rival.com" \
  -H "Authorization: Bearer qw-api-your-token-here"
```

To include answer evidence:

```bash theme={null}
curl "https://www.qwairy.co/api/v1/pitch-audits/8a218180-6dd7-43c7-a481-f6a1cc72dfd8/reports/rival.com?includeAnswers=true" \
  -H "Authorization: Bearer qw-api-your-token-here"
```

The response uses the same report schema as [Get Pitch Audit](/developers/endpoints/pitch-audits/get). Its `reportSubject` identifies the selected competitor, and its `coCompetitors` rows link to other resolvable subjects. Follow the original prospect row's `reportUrl` to return to the base report.

### Errors

| Status | Code                    | Description                                  |
| ------ | ----------------------- | -------------------------------------------- |
| 400    | `INVALID_PARAMETER`     | Invalid query or subject parameter           |
| 401    | `INVALID_TOKEN`         | Authentication failed                        |
| 404    | `PITCH_AUDIT_NOT_FOUND` | Audit or requested subject is not accessible |
