> For the complete documentation index, see [llms.txt](https://developer.paddle.com/llms.txt).

# Default scopes

Most list endpoints return active entities. Filter by status to see entities with other statuses.

---

Most list endpoints only return active entities by default, so archived entities aren't included in the results.

| Entity | Default scope |
|---|---|
| Most list operations | active |
| Adjustments | all |
| Notifications | all |
| Notification settings | all |
| Reports | all |
| Subscriptions | all |
| Transactions | all |

{% callout type="info" %}
Most entities in the Paddle API can either be `active` or `archived`. More complex entities like [transactions](https://developer.paddle.com/api-reference/transactions.md), [subscriptions](https://developer.paddle.com/api-reference/subscriptions.md), and [adjustments](https://developer.paddle.com/api-reference/adjustments.md) have their own unique status values.
{% /callout %}

The estimated total in [the pagination object](https://developer.paddle.com/api-reference/about/pagination.md) is for entities that match the scope.

## Change scope

Use the `status` query parameter when making a request to get archived or active entities.

For example, to [list archived products](https://developer.paddle.com/api-reference/products/list-products.md):

{% api-endpoint method="GET" path="/products?status=archived" %}

{% /api-endpoint %}

To return all entities, use a comma to include `active` and `archived`. For example:

{% api-endpoint method="GET" path="/products?status=archived,active" %}

{% /api-endpoint %}