Continue Deep Research
curl --request POST \
--url https://search.clado.ai/api/search/deep_research/{job_id}/more \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"additional_limit": 30
}
'import requests
url = "https://search.clado.ai/api/search/deep_research/{job_id}/more"
payload = { "additional_limit": 30 }
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({additional_limit: 30})
};
fetch('https://search.clado.ai/api/search/deep_research/{job_id}/more', 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://search.clado.ai/api/search/deep_research/{job_id}/more",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'additional_limit' => 30
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://search.clado.ai/api/search/deep_research/{job_id}/more"
payload := strings.NewReader("{\n \"additional_limit\": 30\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://search.clado.ai/api/search/deep_research/{job_id}/more")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"additional_limit\": 30\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://search.clado.ai/api/search/deep_research/{job_id}/more")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"additional_limit\": 30\n}"
response = http.request(request)
puts response.read_body{
"job_id": "<string>",
"status": "<string>",
"message": "<string>"
}Deep Research
Continue Deep Research
Expand existing deep research with additional results
POST
/
api
/
search
/
deep_research
/
{job_id}
/
more
Continue Deep Research
curl --request POST \
--url https://search.clado.ai/api/search/deep_research/{job_id}/more \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"additional_limit": 30
}
'import requests
url = "https://search.clado.ai/api/search/deep_research/{job_id}/more"
payload = { "additional_limit": 30 }
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({additional_limit: 30})
};
fetch('https://search.clado.ai/api/search/deep_research/{job_id}/more', 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://search.clado.ai/api/search/deep_research/{job_id}/more",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'additional_limit' => 30
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://search.clado.ai/api/search/deep_research/{job_id}/more"
payload := strings.NewReader("{\n \"additional_limit\": 30\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://search.clado.ai/api/search/deep_research/{job_id}/more")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"additional_limit\": 30\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://search.clado.ai/api/search/deep_research/{job_id}/more")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"additional_limit\": 30\n}"
response = http.request(request)
puts response.read_body{
"job_id": "<string>",
"status": "<string>",
"message": "<string>"
}Continue a completed deep research job to get additional results. This allows you to expand your search beyond the initial limit.
Continue Deep Research
curl -X POST https://search.clado.ai/api/search/deep_research/550e8400-e29b-41d4-a716-446655440000/more \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"additional_limit": 50
}'
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| job_id | string | Yes | The job ID of the completed deep research job |
Request Body
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
| additional_limit | integer | No | 30 | Number of additional results to find |
Response
{
"job_id": "550e8400-e29b-41d4-a716-446655440000",
"status": "pending",
"message": "Deep research continuation initiated"
}
Requirements
- The original job must be in “completed” status
- There must be more unprocessed results available
- You must have sufficient credits for the additional results
Error Responses
| Status Code | Description |
|---|---|
| 401 | Unauthorized - API key missing or invalid |
| 402 | Payment Required - Insufficient credits |
| 404 | Not Found - Job ID does not exist |
| 409 | Conflict - Job is not in completed status or no more results available |
| 500 | Internal Server Error - Error initiating continuation |
Rate Limits
Rate limits vary by subscription tier (same as deep research):- Free Tier: 2 requests per minute
- Tier 1: 5 requests per minute
- Tier 2: 50 requests per minute
- Tier 3: 100 requests per minute
Notes
- Each additional profile returned costs 1 credit
- Use Get Deep Research Status to monitor progress
- Results will be appended to the original job results
Authorizations
API key authentication. Keys start with 'lk_'.
Path Parameters
Unique identifier for the deep research job to continue
Body
application/json
Additional number of profiles to find beyond current results