Prospect Import Status
curl --request GET \
--url https://api.kakiyo.com/v1/prospects/imports/{listId} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.kakiyo.com/v1/prospects/imports/{listId}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.kakiyo.com/v1/prospects/imports/{listId}', 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://api.kakiyo.com/v1/prospects/imports/{listId}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$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://api.kakiyo.com/v1/prospects/imports/{listId}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.kakiyo.com/v1/prospects/imports/{listId}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.kakiyo.com/v1/prospects/imports/{listId}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"listId": "import_list_id",
"campaignId": "campaign_12345abcde",
"status": "completed",
"total": 1,
"processed": 1,
"imported": 1,
"existing": 0,
"invalid": 0,
"report": [
{
"index": 0,
"status": "imported",
"prospectId": "prospect_id",
"chatId": "chat_id",
"chatCreated": true,
"customDataSaved": true
}
]
}{
"error": "validation_error",
"message": "The request parameters failed validation",
"details": [
{
"field": "name",
"message": "The name field is required"
}
]
}{
"error": "validation_error",
"message": "The request parameters failed validation",
"details": [
{
"field": "name",
"message": "The name field is required"
}
]
}{
"error": "validation_error",
"message": "The request parameters failed validation",
"details": [
{
"field": "name",
"message": "The name field is required"
}
]
}Prospects
Prospect Import Status
Returns asynchronous prospect import status, counts, and completed report rows
GET
/
prospects
/
imports
/
{listId}
Prospect Import Status
curl --request GET \
--url https://api.kakiyo.com/v1/prospects/imports/{listId} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.kakiyo.com/v1/prospects/imports/{listId}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.kakiyo.com/v1/prospects/imports/{listId}', 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://api.kakiyo.com/v1/prospects/imports/{listId}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$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://api.kakiyo.com/v1/prospects/imports/{listId}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.kakiyo.com/v1/prospects/imports/{listId}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.kakiyo.com/v1/prospects/imports/{listId}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"listId": "import_list_id",
"campaignId": "campaign_12345abcde",
"status": "completed",
"total": 1,
"processed": 1,
"imported": 1,
"existing": 0,
"invalid": 0,
"report": [
{
"index": 0,
"status": "imported",
"prospectId": "prospect_id",
"chatId": "chat_id",
"chatCreated": true,
"customDataSaved": true
}
]
}{
"error": "validation_error",
"message": "The request parameters failed validation",
"details": [
{
"field": "name",
"message": "The name field is required"
}
]
}{
"error": "validation_error",
"message": "The request parameters failed validation",
"details": [
{
"field": "name",
"message": "The name field is required"
}
]
}{
"error": "validation_error",
"message": "The request parameters failed validation",
"details": [
{
"field": "name",
"message": "The name field is required"
}
]
}Overview
Check the status of an asynchronous prospect import started byPOST /prospects, POST /prospects/batch, or POST /prospects/batch/round-robin.
Use this endpoint to confirm that Kakiyo created a chat before marking a lead as dispatched or imported in your own system.
Path parameters
| Field | Type | Required | Description |
|---|---|---|---|
listId | string | Yes | Import list ID returned by the create endpoint |
Example
curl "https://api.kakiyo.com/v1/prospects/imports/import_list_id" \
-H "Authorization: Bearer YOUR_API_KEY"
Response
{
"listId": "import_list_id",
"campaignId": "campaign_12345abcde",
"status": "completed",
"total": 1,
"processed": 1,
"imported": 1,
"existing": 0,
"invalid": 0,
"skippedDnc": 0,
"enrichmentFailed": 0,
"currentIndex": 1,
"startedAt": "2026-06-20T00:00:00.000Z",
"lastProcessedAt": "2026-06-20T00:00:10.000Z",
"completedAt": "2026-06-20T00:00:10.000Z",
"report": [
{
"index": 0,
"inputUrl": "https://linkedin.com/in/johnsmith",
"linkedinSlug": "johnsmith",
"status": "imported",
"prospectId": "prospect_id",
"chatId": "chat_id",
"message": "Prospect imported and enriched",
"chatCreated": true,
"customDataSaved": true
}
]
}
Confirmation rule
Treat a row as confirmed only when:{
"chatCreated": true
}
chatCreated is false, Kakiyo did not create a new chat for that row, so no new customData was saved on a conversation.Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Import list ID returned by the create endpoint
Response
Import status returned successfully
Last modified on June 20, 2026

