GET
/api/public/v1/prospector/config
Read prospector config
Read and run prospecting workflows aligned to the existing workspace model.
prospector.read200401403404409429
Response example · ProspectorConfigEnvelope
{
"data": {
"id": "string",
"object": "prospector_config",
"created_at": "2026-03-10T12:00:00.000Z",
"updated_at": "2026-03-10T12:00:00.000Z",
"timezone": "string",
"states": [
{}
]
},
"request_id": "string"
}
GET
/api/public/v1/prospector/runs/{run_id}
Retrieve a prospector run
Read and run prospecting workflows aligned to the existing workspace model.
prospector.read200401403404409429
Response example · ProspectorRunEnvelope
{
"data": {
"id": "string",
"object": "prospector_run",
"created_at": "2026-03-10T12:00:00.000Z",
"updated_at": "2026-03-10T12:00:00.000Z",
"status": "string",
"workflow_id": "string"
},
"request_id": "string"
}
GET
/api/public/v1/prospector/runs/{run_id}/results
List prospector run results
Read and run prospecting workflows aligned to the existing workspace model.
prospector.read200401403404409429
Response example · ProspectorResultListEnvelope
{
"data": [
{
"id": "string",
"object": "prospector_result",
"created_at": "2026-03-10T12:00:00.000Z",
"updated_at": "2026-03-10T12:00:00.000Z",
"lead_id": "string",
"company_name": "string"
}
],
"pagination": {
"next_cursor": "lead_002",
"has_more": true
},
"request_id": "string"
}
GET
/api/public/v1/prospector/workflows
List prospector workflows
Read and run prospecting workflows aligned to the existing workspace model.
prospector.read200401403404409429
Response example · ProspectorWorkflowListEnvelope
{
"data": [
{
"id": "string",
"object": "prospector_workflow",
"created_at": "2026-03-10T12:00:00.000Z",
"updated_at": "2026-03-10T12:00:00.000Z",
"name": "string",
"status": "string"
}
],
"pagination": {
"next_cursor": "lead_002",
"has_more": true
},
"request_id": "string"
}
POST
/api/public/v1/prospector/workflows
Create a prospector workflow
Read and run prospecting workflows aligned to the existing workspace model.
prospector.run200401403404409429
Parameters
| Name | In | Required | Description |
|---|
| Idempotency-Key | header | No | Required for safe retries on create, upsert, bulk, import, export, campaign and prospector mutations. |
Request example · ProspectorWorkflowRequest
Required body
{}
Response example · ProspectorWorkflowEnvelope
{
"data": {
"id": "string",
"object": "prospector_workflow",
"created_at": "2026-03-10T12:00:00.000Z",
"updated_at": "2026-03-10T12:00:00.000Z",
"name": "string",
"status": "string"
},
"request_id": "string"
}
GET
/api/public/v1/prospector/workflows/{workflow_id}
Retrieve a prospector workflow
Read and run prospecting workflows aligned to the existing workspace model.
prospector.read200401403404409429
Response example · ProspectorWorkflowEnvelope
{
"data": {
"id": "string",
"object": "prospector_workflow",
"created_at": "2026-03-10T12:00:00.000Z",
"updated_at": "2026-03-10T12:00:00.000Z",
"name": "string",
"status": "string"
},
"request_id": "string"
}
PATCH
/api/public/v1/prospector/workflows/{workflow_id}
Update a prospector workflow
Read and run prospecting workflows aligned to the existing workspace model.
prospector.run200401403404409429
Request example · ProspectorWorkflowRequest
Required body
{}
Response example · ProspectorWorkflowEnvelope
{
"data": {
"id": "string",
"object": "prospector_workflow",
"created_at": "2026-03-10T12:00:00.000Z",
"updated_at": "2026-03-10T12:00:00.000Z",
"name": "string",
"status": "string"
},
"request_id": "string"
}
DELETE
/api/public/v1/prospector/workflows/{workflow_id}
Delete a prospector workflow
Read and run prospecting workflows aligned to the existing workspace model.
prospector.run200401403404409429
Response example · ProspectorWorkflowEnvelope
{
"data": {
"id": "string",
"object": "prospector_workflow",
"created_at": "2026-03-10T12:00:00.000Z",
"updated_at": "2026-03-10T12:00:00.000Z",
"name": "string",
"status": "string"
},
"request_id": "string"
}
POST
/api/public/v1/prospector/workflows/{workflow_id}/run
Run a prospector workflow immediately
Read and run prospecting workflows aligned to the existing workspace model.
prospector.run200401403404409429
Parameters
| Name | In | Required | Description |
|---|
| Idempotency-Key | header | No | Required for safe retries on create, upsert, bulk, import, export, campaign and prospector mutations. |
Practical notes
- Use idempotency and track request_id when manually triggering workflows from automation.
Response example · ProspectorRunEnvelope
{
"data": {
"id": "string",
"object": "prospector_run",
"created_at": "2026-03-10T12:00:00.000Z",
"updated_at": "2026-03-10T12:00:00.000Z",
"status": "string",
"workflow_id": "string"
},
"request_id": "string"
}
GET
/api/public/v1/prospector/workflows/{workflow_id}/runs
List prospector runs
Read and run prospecting workflows aligned to the existing workspace model.
prospector.read200401403404409429
Response example · ProspectorRunListEnvelope
{
"data": [
{
"id": "string",
"object": "prospector_run",
"created_at": "2026-03-10T12:00:00.000Z",
"updated_at": "2026-03-10T12:00:00.000Z",
"status": "string",
"workflow_id": "string"
}
],
"pagination": {
"next_cursor": "lead_002",
"has_more": true
},
"request_id": "string"
}