startCursor
startCursor is a term used in data retrieval and pagination to denote the position in an ordered sequence from which subsequent results should begin. It represents a point within a dataset, such as records, documents, or events, and is typically used in systems that support cursor-based pagination or streaming. When a server returns a page of results, it may provide a startCursor token that encodes the location for the next retrieval. Clients store this token and use it in a following request to resume fetching results from that position.
In practice, startCursor is commonly used in APIs that support stateless pagination. A response may include
Compared with offset-based pagination, cursor-based approaches using a startCursor can offer better consistency for dynamic data,
See also: endCursor, nextPageToken, pagination, cursor-based pagination.