Fetch results from an AI Finder preview
What it does. Returns a page of the actual matching records the provider search produced for a cached previewId — i.e. the contacts or companies the filters matched. This is what the web UI displays under the preview. No data is persisted; every call is a live provider API request.
When to use. Call this after a preview has been created (or iterated) when you want to inspect the concrete records before committing to an import, or when you just need a quick lookup of a few results without the full import pipeline.
Pagination. 1-indexed page (default 1, max 50) plus pageSize (default 10, max 25). Providers generally cap their per-request page size at 25, so pageSize is bounded accordingly. Where a provider only supports cursor-based pagination (Crunchbase), this endpoint walks forward from page 1 behind the scenes, so deep pages make several upstream calls — stay within the first 10 pages for Crunchbase or you will receive a 422.
Provider support.
CRUNCHBASE_COMPANIES,CRUNCHBASE_CONTACTS,CRUNCHBASE_INVESTORS— paginated via Crunchbaseafter_idcursor walks. Capped at 10 pages.STORELEADS— paginated via StoreLeads native page/page_size params.LINKEDIN,CRM_CONTACTS,CRM_COMPANIES,GOOGLE_MAPS,THEIRSTACK_TECHNOLOGY,THEIRSTACK_JOBS— supported inline. Provider-specific page ceilings still apply, and some providers may omittotalCountwhen the upstream API does not expose it.
What you get back. records is a normalized list with optional id, name, domain, linkedinUrl, title, location, and an extra bag of provider-specific fields. Which fields are populated depends on the provider (e.g. title is only set for contact/person providers). totalCount is populated when the provider exposes a total; otherwise rely on hasNextPage to know if another page is available.
Required scope:
ACTIONS_WRITERate limit: 100 requests per minute
Documentation Index
Fetch the complete documentation index at: https://docs.enginy.ai/llms.txt
Use this file to discover all available pages before exploring further.
Authorizations
Path Parameters
The previewId returned by a prior preview or iterate call.
Query Parameters
1-indexed page number. Max 50 pages. Defaults to 1.
1 <= x <= 50Records per page. Default 10, max 25 (providers typically cap at 25 per request).
1 <= x <= 25