Skip to main content
GET
/
api
/
v2
/
supersearch-enrichment
/
ai
/
{resource_id}
/
in-progress
Get AI enrichment for resource
curl --request GET \
  --url https://api.instantly.ai/api/v2/supersearch-enrichment/ai/{resource_id}/in-progress \
  --header 'Authorization: Bearer <token>'
[
  {
    "organization_id": "01234567-89ab-cdef-0123-456789abcdef",
    "resource_id": "01234567-89ab-cdef-0123-456789abcdef",
    "resource_type": 1,
    "output_column": "ai_generated_content",
    "status": 1,
    "auto_update": true,
    "id": "01234567-89ab-cdef-0123-456789abcdef"
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

resource_id
string<uuid>
required

The ID of the list or campaign to retrieve the AI enrichment.

Example:

"123e4567-e89b-12d3-a456-426614174000"

Response

Default Response

organization_id
string<uuid>
required

Organization ID that owns this enrichment

Example:

"01234567-89ab-cdef-0123-456789abcdef"

resource_id
string<uuid>
required

ID of the resource being enriched

Example:

"01234567-89ab-cdef-0123-456789abcdef"

resource_type
enum<number>
required

Type of the resource (1 for Campaign, 2 for List)

Available options:
CAMPAIGN,
LIST,
1,
2
Example:

1

output_column
string
required

Name of the column where results will be stored

Example:

"ai_generated_content"

status
number
required

Status of the enrichment job

Example:

1

auto_update
boolean
required

Whether to auto-update new leads

Example:

true

id
string

Unique identifier for the enrichment

Example:

"01234567-89ab-cdef-0123-456789abcdef"