Get records
Returns data synced with Nango Sync
Receive webhooks on data updates
Receive webhooks from Nango when new records are available (step-by-step guide).
Response
This endpoint returns a list of records, ordered by modification date ascending. If some records are updated while you paginate through this endpoint, you might see these records multiple times.
Default behaviour
By default this returns an array of objects in the data model that you queried with some metadata about each record.
Headers
The connection ID used to create the connection.
The integration ID used to create the connection (aka Unique Key).
Query Parameters
The data model to fetch
A marker used to fetch records modified after a specific point in time. If not provided, all records are returned. Each record includes a cursor value found in _nango_metadata.cursor. Save the cursor from the last record retrieved to track your sync progress. Use the cursor parameter together with the limit parameter to paginate through records. The cursor is more precise than modified_after, as it can differentiate between records with the same modification timestamp.
The maximum number of records to return. Defaults to 100.
Filter to only show results that have been added or updated or deleted.
added
, updated
, deleted
A timestamp (e.g., 2023-05-31T11:46:13.390Z) used to fetch records modified after this date and time. If not provided, all records are returned. The modified_after parameter is less precise than cursor, as multiple records may share the same modification timestamp.
DEPRECATED (use modified_after) Timestamp, e.g. 2023-05-31T11:46:13.390Z. If passed, only records modified after this timestamp are returned, otherwise all records are returned.
Response
The base64-encoded cursor for pagination
Was this page helpful?