# Pagination

List endpoints that can grow (trips, bookings, payments) return a meta object. Default page size is 25; the maximum is 100.

**Query**

```
curl -H "Authorization: Bearer sk_live_…" \
  "https://safraway.com/api/partner/v1/bookings?page=2&perPage=50&status=approved"
```

**meta**

```
{
  "bookings": [ … ],
  "meta": { "page": 2, "perPage": 50, "total": 381, "lastPage": 8 }
}
```

- page starts at 1.
- perPage below 1 falls back to 25.
- Members, vehicles, and webhook endpoints return the full list without meta.
