Skip to main content
POST
/
v1
/
ai-finder
/
import
Import a list from AI Finder
curl --request POST \
  --url https://openapi.enginy.ai/v1/ai-finder/import \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "listId": 123,
  "maxCount": 500,
  "text": "VP Finance at companies in California",
  "type": "contacts"
}
'
{
  "status": "success",
  "message": "<string>",
  "data": {
    "actionsId": 123,
    "createdAt": "2023-11-07T05:31:56Z",
    "type": "CONTACTS",
    "listId": 123,
    "workflowId": "<string>"
  }
}

Authorizations

x-api-key
string
header
required

Body

application/json
text
string
required

Natural-language description of the people or companies you want AI Finder to locate.

Required string length: 1 - 500
type
enum<string>
required

Entity type to search and import. This determines whether listId refers to a contact list or a company list.

Available options:
contacts,
companies
maxCount
integer
required

Maximum number of results to import. Must be between 100 and 2500, inclusive, in increments of 100.

Required range: 100 <= x <= 2500
listId
integer
required

Destination list ID. Must be a contact list for contacts or a company list for companies.

Response

AI Finder import started

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