# Pagination

### What's <mark style="color:orange;">`starting_after`</mark>?

A cursor to use in pagination. <mark style="color:orange;">`starting_after`</mark> is an object ID that defines your place in the list.&#x20;

> For example, after retrieving 100 objects in a list request, you can pass <mark style="color:orange;">`starting_after`</mark>=cursor\_data to fetch the next page starting after the last object.

**Example Usage :**&#x20;

1. Make a <mark style="color:green;">`GET`</mark> request to fetch the first page of data.&#x20;

```
{
  ...
  "starting_after": "20240213010101_abcde"
}
```

2. If the response contains lastKey, send another <mark style="color:green;">`GET`</mark> request with <mark style="color:orange;">`starting_after`</mark> as a query parameter to retrieve the next page.

```url
GET /transactions?starting_after=20240213010101_abcde
```
