Skip to main content
POST
/
v1
/
ai-finder
/
previews
/
{previewId}
/
import
Import an AI Finder preview
curl --request POST \
  --url https://openapi.enginy.ai/v1/ai-finder/previews/{previewId}/import \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "listId": 123,
  "maxCount": 500
}
'
{
  "message": "<string>",
  "data": {
    "actionsId": 123,
    "createdAt": "2023-11-07T05:31:56Z",
    "listId": 123,
    "workflowId": "<string>",
    "previewId": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
  }
}

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

x-api-key
string
header
required

Path Parameters

previewId
string
required

The previewId returned by a prior preview or iterate call.

Body

application/json
listId
integer
required

Destination list ID. Must be owned by this client. The list type must match the preview's entity — pass a contact list when the preview's entity is CONTACT, or a company list when it is COMPANY. Mismatch returns 422. Create a list first via POST /v1/lists if needed.

maxCount
integer
required

Maximum number of results to import into the destination list. Integer between 100 and 2500, in increments of 100 (100, 200, 300, …, 2500). The actual count may be lower if the search yields fewer matches.

Required range: 100 <= x <= 2500

Response

AI Finder import started

status
enum<string>
required
Available options:
success
message
string
required
data
object
required