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

# Get check report

> Retrieve a stored property list check report by ID

`GET /api/v2/buyer/property-lists/reports/{reportId}`

Retrieves a stored check report produced by [Check property list](/v2/buyer/property-lists/tasks/check-property-list). Use the `reportId` returned from a check that included at least one domain. Reports expire after 7 days.

## Request

<CodeGroup>
  ```bash curl theme={null}
  curl https://api.interchange.io/api/v2/buyer/property-lists/reports/rpt_abc123 \
    -H "Authorization: Bearer $SCOPE3_API_KEY"
  ```
</CodeGroup>

## Parameters

| Field      | Type   | Required | Notes                                      |
| ---------- | ------ | -------- | ------------------------------------------ |
| `reportId` | string | Yes      | Path. ID returned by a property list check |

## Response

```json theme={null}
{
  "summary": { "total": 4, "remove": 1, "modify": 0, "assess": 1, "ok": 2 }
}
```

The report returns the bucket `summary` counts for the original check.

## Errors

* `404 NOT_FOUND` — `reportId` does not exist or has expired (reports are kept for 7 days).

See [Errors](/v2/reference/errors) for the full error contract.

## Related

<CardGroup cols={2}>
  <Card title="Property list tasks" href="/v2/buyer/property-lists/tasks" icon="list-check">
    All property list operations
  </Card>

  <Card title="Property Lists guide" href="/v2/guides/property-lists" icon="list">
    Check buckets and resolution concepts
  </Card>

  <Card title="Check property list" href="/v2/buyer/property-lists/tasks/check-property-list" icon="circle-check">
    Run a check to produce a report
  </Card>

  <Card title="Create property list" href="/v2/buyer/property-lists/tasks/create-property-list" icon="plus">
    Commit a validated set to a list
  </Card>
</CardGroup>
