# Offset pagination

If you see the word `offset` in your API docs, this is the style for you. **Hubspot** uses this style. Their docs say:

Some endpoints support a way of paging the dataset, taking an offset and limit as query parameters:

```javascript
https://api.hubapi.com/v1/deals/v1/deal/paged?offset=20&limit=20

```

In this example, in a list of 20 (`total`) singles by the specified deal: from the twentieth (`offset`) deal, retrieve the next 10 (`limit`) deals.

In Jet API Builder that would be set up with these settings:

```javascript
https://api.hubapi.com/v1/deals/v1/deal/paged?offset={{paging.offset}}&limit={{paging.limit}}
```

<figure><img src="https://3448227606-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F-LQ08RFAKZvFADEiXKFy%2Fuploads%2FQx32zdVS3mCWrYhvr3Xl%2Fimage.png?alt=media&#x26;token=a92fb04b-1389-40b6-9b45-1b7d11974461" alt=""><figcaption></figcaption></figure>
