Skip to main content
POST
Get Records
Fetch records for a specific entity with optional filtering and token-based pagination. This endpoint is used by the Airbyte connector to pull data from Superleap during flow execution.

Headers

string
required
Bearer token for authentication, click here to generate one
string
default:"application/json"
required
application/json

Path Parameters

string
required
The entity identifier for the object (e.g., “lead”, “user”, “opportunity”). Use the List Objects endpoint to discover available identifiers.

Body

object
required
Query object containing field selection and filter parameters
string
Pagination token returned from a previous response. Pass null for the first request. When the response includes a next_token, pass it in the next request to retrieve the following page of results.

Example Request

Example Response

Response Fields

Pagination

Records are returned in pages. When the response includes a non-null next_token:
  1. Pass the next_token value in your next request to retrieve the following page
  2. Continue paginating until next_token is null
  3. Each page may contain up to 3000 records

Incremental Sync

For incremental data syncs, filter by a timestamp field (e.g., updated_at) using the gte operator with a Unix timestamp in milliseconds. This allows you to fetch only records that have been modified since your last sync.