curl --request GET \
--url https://openapi.enginy.ai/v1/ai-finder/previews/{previewId}/results \
--header 'x-api-key: <api-key>'import requests
url = "https://openapi.enginy.ai/v1/ai-finder/previews/{previewId}/results"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://openapi.enginy.ai/v1/ai-finder/previews/{previewId}/results', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://openapi.enginy.ai/v1/ai-finder/previews/{previewId}/results",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://openapi.enginy.ai/v1/ai-finder/previews/{previewId}/results"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://openapi.enginy.ai/v1/ai-finder/previews/{previewId}/results")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://openapi.enginy.ai/v1/ai-finder/previews/{previewId}/results")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"status": "success",
"message": "<string>",
"data": {
"previewId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"page": 123,
"pageSize": 123,
"hasNextPage": true,
"records": [
{
"id": "<string>",
"name": "<string>",
"domain": "<string>",
"linkedinUrl": "<string>",
"title": "<string>",
"location": "<string>",
"imageUrl": "<string>",
"extra": {}
}
],
"entity": "CONTACT",
"totalCount": 123,
"resolvedProvider": "<string>",
"result": "<unknown>",
"userInput": "<string>"
}
}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 (fundraising data), this endpoint walks forward from page 1 behind the scenes, so deep pages make several upstream calls — stay within the first 10 pages for fundraising data or you will receive a 422.
Provider support.
CRUNCHBASE_COMPANIES,CRUNCHBASE_CONTACTS,CRUNCHBASE_INVESTORS— paginated via fundraising dataafter_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
curl --request GET \
--url https://openapi.enginy.ai/v1/ai-finder/previews/{previewId}/results \
--header 'x-api-key: <api-key>'import requests
url = "https://openapi.enginy.ai/v1/ai-finder/previews/{previewId}/results"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://openapi.enginy.ai/v1/ai-finder/previews/{previewId}/results', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://openapi.enginy.ai/v1/ai-finder/previews/{previewId}/results",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://openapi.enginy.ai/v1/ai-finder/previews/{previewId}/results"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://openapi.enginy.ai/v1/ai-finder/previews/{previewId}/results")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://openapi.enginy.ai/v1/ai-finder/previews/{previewId}/results")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"status": "success",
"message": "<string>",
"data": {
"previewId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"page": 123,
"pageSize": 123,
"hasNextPage": true,
"records": [
{
"id": "<string>",
"name": "<string>",
"domain": "<string>",
"linkedinUrl": "<string>",
"title": "<string>",
"location": "<string>",
"imageUrl": "<string>",
"extra": {}
}
],
"entity": "CONTACT",
"totalCount": 123,
"resolvedProvider": "<string>",
"result": "<unknown>",
"userInput": "<string>"
}
}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