All list endpoints in the Launchboard API use cursor-based pagination. Instead of page numbers, each response includes an opaque cursor that points to your position in the result set. Pass that cursor back on the next request to fetch the following page. This approach is stable under concurrent writes — inserting a new record won’t cause you to skip or repeat rows as you page through.Documentation Index
Fetch the complete documentation index at: https://docs.launchboard.xyz/llms.txt
Use this file to discover all available pages before exploring further.
Query parameters
The number of records to return. Clamped to a minimum of 1 and a maximum of 200. Omit this parameter to use the default of 50.
An opaque string returned as
nextCursor in the previous response. Omit on the first request. Pass verbatim — do not decode or modify the cursor value.Response structure
List endpoints return a JSON object with two top-level fields:The array of records for the current page, ordered by creation time descending.
An opaque cursor you can pass as
?cursor= to fetch the next page. When this value is null, you have reached the last page and there are no more results.Example
Fetch the first page of stakeholders, then fetch the next page using the cursor from the response."nextCursor": null, you have fetched all records.