Skip to content
GetmeDocs
Sign inCreate account

Getting started

  • Getme developer documentation

API Reference

  • Introduction
  • Authentication
  • Errors
  • Idempotent requests
  • Metadata
  • Pagination
  • Request IDs
  • Versioning
  • Webhooks
  • Event Catalog
  • SDKs and CLI

Core Resources

  • Auth
  • Events

Site Resources

  • Forms
  • Sites

Commerce Resources

  • Brands
  • Categories
  • Products
  • Services

Crm Resources

  • Customers

Other Resources

  • Media

Dev Tools

  • CLIBeta
  • Website source with the CLIBeta
  • Webhooks with the CLIBeta
  • SDKsBeta
  • Node SDKBeta
  • Python SDKBeta

Guides

  • Guides
  • Quickstart
  • Website source workflow
  • Webhook handler

Changelog

  • Changelog
  • June 10, 2026 - Developer platform docs beta
  • July 15, 2026 - Install token lifecycle safety
  • July 15, 2026 - Source-first site development
  • July 15, 2026 - Site source navigation warnings
Loading documentation...
HomeAPI referencePagination

Pagination

Cursor-based pagination for list endpoints using limit, starting_after, and ending_before.

List endpoints are paginated with a cursor. Instead of page numbers you pass the id of the last item you saw to fetch the next slice — this stays stable as data changes underneath you.

Parameters

ParameterDescription
limitMaximum number of items to return per page.
starting_afterReturn items after this object id — the next page.
ending_beforeReturn items before this object id — the previous page.
bash
curl "https://api.getmeonline.io/v1/products?limit=20&starting_after=prod_123" \
  -H "Authorization: Bearer $GETME_API_KEY"

To page forward, take the id of the last item in a response and pass it as starting_after on the next request. Continue until fewer than limit items come back, which means you have reached the end.

On this page

  • Parameters