# Meta

**pagination** object

**current** integer

The index of the current page.

**Example:** `1`

**next** integer nullable

The index of the next page. This property is only included when there is a next page available.

**Example:** `2`

**last** integer nullable

The index of the last page. This property is only included when there is a next page available.

**Example:** `5`

**records** integer

The total number of objects.

**Example:** `100`

Meta

```json
{
  "pagination": {
    "current": 1,
    "next": 2,
    "last": 5,
    "records": 100
  }
}
```
