---
search:
  exclude: true
---

# <a id="bitdrift.public.unary.common.v1.Pagination"></a>Pagination

**Source definition:** [`src/bitdrift/public/unary/common/v1/common.proto#L30-L38`](<https://github.com/bitdriftlabs/api/blob/main/src/bitdrift/public/unary/common/v1/common.proto#L30-L38>)

<section class="proto-fields-table" markdown>
| Field | Type | Description |
|---|---|---|
| offset | <span class="proto-type proto-type-primitive">optional uint32</span> | The starting offset for pagination. For example, set this to 10 to start  with the 10th record. Defaults to 0. |
| limit | <span class="proto-type proto-type-primitive">optional uint32</span><br><em class="proto-field-annotation">between 0 and 100 (excluding lower bound)</em> | The maximum number of items to return. The server returns at most  min(items.count, limit, 100). |

</section>
#### Example
```json
{
  "limit": 25,
  "offset": 0
}
```

