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

# Download a campaign creator payout report

> Download a campaign creator's payout report as a PDF for a selected date range.

## GET /sdk/v1/campaign-creators/:campaignCreatorRecordId/payout-report

Returns the campaign creator's payout report as PDF data. You can display the
response in a browser, embed it in a PDF viewer, or save it as a file.

All requests require `X-Application-Id` and `X-Api-Key`.

### Path parameter

* `campaignCreatorRecordId` (required): the campaign creator to report on.

### Query parameters

* `startDate` (required): first included activity date in `YYYY-MM-DD` format.
* `endDate` (required): last included activity date in `YYYY-MM-DD` format.

The dates are interpreted in the campaign's time zone.

### Example request

```bash theme={null}
curl -sS "$BASE_URL/sdk/v1/campaign-creators/CCR_123/payout-report?startDate=2026-07-01&endDate=2026-07-31" \
  -H "X-Application-Id: $APP_ID" \
  -H "X-Api-Key: $API_KEY" \
  --output creator-payout-report.pdf
```

### Response

* Content type: `application/pdf`
* Content disposition: `inline`
* Body: raw PDF bytes

This endpoint does not return a JSON success wrapper when the report is
generated successfully.

### Common errors

* `400`: missing or invalid date range
* `401`: missing or invalid SDK credentials
* `404`: campaign creator record not found
* `413`: the report exceeds 10,000 rows; use a shorter date range
