# GET /reports

**List reports**

Returns a paginated list of reports. Use the query parameters to page through results.

By default, Paddle returns reports that are `pending` or `ready`. Use the `status` query parameter to return reports that are `failed`, `expired`, or `deleted`.

**Required permissions:** `report.read`

## Query parameters

| Name | Type | Required | Description |
| --- | --- | --- | --- |
| `after` | string | optional | Return entities after the specified Paddle ID when working with paginated endpoints. Used in the `meta.pagination.next` URL in responses for list operations. |
| `per_page` | integer | optional | Set how many entities are returned per page. Paddle returns the maximum number of results if a number greater than the maximum is requested. Check `meta.pagination.per_page` in the response to see how many were returned.

Default: `50`; Maximum: `200`. (Max: 200) |
| `order_by` | string | optional | Order returned entities by the specified field and direction (`[ASC]` or `[DESC]`). For example, `?order_by=id[ASC]`.

Valid fields for ordering: `id`. |
| `status` | array | optional | Return entities that match the specified status. Use a comma-separated list to specify multiple status values. |

## Response (200)

- `data`: array (required)
- `meta`: object (required) — Information about this response.
  - `request_id`: string (required) — Unique ID for the request relating to this response. Provide this when contacting Paddle support about a specific request.
  - `pagination`: object (required) — Keys used for working with paginated results.
    - `per_page`: integer (required) — Number of entities per page for this response. May differ from the number requested if the requested number is greater than the maximum.
    - `next`: string (uri) (required) — URL containing the query parameters of the original request, along with the `after` parameter that marks the starting point of the next page. Always returned, even if `has_more` is `false`.
    - `has_more`: boolean (required) — Whether this response has another page.
    - `estimated_total`: integer — Estimated number of entities for this response.

### Response example

```json
{
  "data": [
    {
      "id": "rep_01hvgdpayq6kjzyk4hz5m02cpn",
      "type": "adjustments",
      "rows": 8,
      "status": "ready",
      "filters": [
        {
          "name": "updated_at",
          "value": "2024-04-15",
          "operator": "lt"
        },
        {
          "name": "updated_at",
          "value": "2024-01-01",
          "operator": "gte"
        },
        {
          "name": "status",
          "value": [
            "pending_approval",
            "approved"
          ],
          "operator": null
        },
        {
          "name": "action",
          "value": [
            "refund",
            "chargeback"
          ],
          "operator": null
        }
      ],
      "expires_at": "2024-04-29T08:24:13.042686Z",
      "created_at": "2024-04-15T08:24:03.799Z",
      "updated_at": "2024-04-15T08:24:13.042692Z"
    },
    {
      "id": "rep_01hvgdn6hg6wkh5nnr0e4nn1c0",
      "type": "transaction_line_items",
      "rows": 771,
      "status": "ready",
      "filters": [
        {
          "name": "updated_at",
          "value": "2024-04-15",
          "operator": "lt"
        },
        {
          "name": "updated_at",
          "value": "2024-04-09",
          "operator": "gte"
        }
      ],
      "expires_at": "2024-04-29T08:23:40.529936Z",
      "created_at": "2024-04-15T08:23:26.512Z",
      "updated_at": "2024-04-15T08:23:40.529941Z"
    },
    {
      "id": "rep_01hvgdhtthn1q35n79dgeqm3pv",
      "type": "transactions",
      "rows": 27,
      "status": "ready",
      "filters": [
        {
          "name": "collection_mode",
          "value": [
            "manual"
          ],
          "operator": null
        },
        {
          "name": "updated_at",
          "value": "2024-04-15",
          "operator": "lt"
        },
        {
          "name": "updated_at",
          "value": "2024-01-01",
          "operator": "gte"
        }
      ],
      "expires_at": "2024-04-29T08:21:44.970769Z",
      "created_at": "2024-04-15T08:21:36.209Z",
      "updated_at": "2024-04-15T08:21:44.970774Z"
    },
    {
      "id": "rep_01hqbc372ban0at6z6ysh7hcht",
      "type": "discounts",
      "rows": 3,
      "status": "expired",
      "filters": [
        {
          "name": "updated_at",
          "value": "2024-01-23T16:17:09Z",
          "operator": "gte"
        }
      ],
      "expires_at": "2024-03-08T16:17:13.592102Z",
      "created_at": "2024-02-23T16:17:09.195Z",
      "updated_at": "2024-02-23T16:17:13.592106Z"
    },
    {
      "id": "rep_01hqbc2ra43dhda5dfysc9z3m8",
      "type": "products_prices",
      "rows": 3,
      "status": "expired",
      "filters": [
        {
          "name": "product_updated_at",
          "value": [
            "2024-01-23T16:16:54Z"
          ],
          "operator": "gte"
        },
        {
          "name": "price_updated_at",
          "value": [
            "2024-01-23T16:16:54Z"
          ],
          "operator": "gte"
        }
      ],
      "expires_at": "2024-03-08T16:16:57.93002Z",
      "created_at": "2024-02-23T16:16:54.084Z",
      "updated_at": "2024-02-23T16:16:57.930024Z"
    }
  ],
  "meta": {
    "request_id": "b1a05cb6-c072-4a5f-914b-1a275392196c",
    "pagination": {
      "per_page": 50,
      "next": "https://api.paddle.com/reports?after=rep_01hqbc2ra43dhda5dfysc9z3m8",
      "has_more": false,
      "estimated_total": 5
    }
  }
}
```
