Retrieve documents for a specific API data source. This endpoint requires a data source ID. To get started:
The endpoint uses cursor-based pagination to handle large result sets efficiently. Here’s how it works:
nextCursor from the previous response to get the next pagenextCursor is undefined, you’ve reached the end of the resultsExample pagination flow:
GET /documents/int_21XZai6JGvd1111J → Returns first page with nextCursorGET /documents/int_21XZai6JGvd1111J?cursor=456 → Returns next pagenextCursor is undefinedBy default, only document IDs are returned. Use the fields parameter to request additional fields:
fields=id,title,contentThe endpoint is rate limited to 600 requests per minute.
600 requests per minute.
These endpoints require a custom API data source. See Custom API for setup instructions.Documentation Index
Fetch the complete documentation index at: https://docs.withrealm.com/llms.txt
Use this file to discover all available pages before exploring further.
fields parameter to request additional fields like title, content, url, and meta.
nextCursor from the response to get the next pagenextCursor is not presentBearer authentication header of the form Bearer <token>, where <token> is your auth token.
Comma-separated list of fields to return. If not provided, only document IDs are returned.
id, title, content, content_type, url, document_created_at, document_updated_at, meta Cursor for pagination. Required for fetching results beyond the first 100 documents.
^\d+$Number of documents to return per page. Defaults to 20, maximum 100.
1 <= x <= 100