DavenDaven Documentation

Pagination

How to paginate through list endpoints using the next_link cursor.

Pagination

All list endpoints return a meta.next_link field when more results are available.

{
  "message": "OK",
  "data": [...],
  "meta": {
    "next_link": "https://api.dashboard.davenhr.com/v3/ats/application-steps?cursor=abc123"
  }
}

To fetch the next page, call the URL in next_link directly — it already contains all necessary query parameters. When meta.next_link is absent or null, you have reached the last page.

Always pass your Bearer token when following next_link URLs.

On this page