# Page size limits

Page size controls how many items an API list operation returns in a single response.

## Current documented limits

The migrated documentation states:

| Setting | Value |
|  --- | --- |
| Maximum items per page | 100 |
| Default page size | Varies by endpoint |


The current DAM OpenAPI description also documents `$top` with a default of `100` and maximum of `100` for image listing.

For Catalog endpoints, check the [Catalog endpoint reference](/apis/catalog-v2.0) and resource metadata for endpoint-specific behavior.

## Recommendations

* Keep page sizes small enough for the client to process reliably.
* Use pagination for large exports or synchronization jobs.
* Avoid requesting the maximum page size by default unless the integration has been tested under production-like data volume.
* Combine page size with filtering and sorting when this makes synchronization more predictable.


## Example


```http
GET https://api2.saleslayer.com/catalog/rest/Catalog/Products?$top=50
```


```http
GET https://api2.saleslayer.com/dam/image?$top=50
```