curl --request POST \
--url https://{host}/api/contexts/{slug}/curate \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"force": false,
"batch_size": 123,
"scope": "<string>",
"trigger": "<string>",
"model": "<string>",
"pinecone_api_key": "<string>"
}
'import requests
url = "https://{host}/api/contexts/{slug}/curate"
payload = {
"force": False,
"batch_size": 123,
"scope": "<string>",
"trigger": "<string>",
"model": "<string>",
"pinecone_api_key": "<string>"
}
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({
force: false,
batch_size: 123,
scope: '<string>',
trigger: '<string>',
model: '<string>',
pinecone_api_key: '<string>'
})
};
fetch('https://{host}/api/contexts/{slug}/curate', 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://{host}/api/contexts/{slug}/curate",
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([
'force' => false,
'batch_size' => 123,
'scope' => '<string>',
'trigger' => '<string>',
'model' => '<string>',
'pinecone_api_key' => '<string>'
]),
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://{host}/api/contexts/{slug}/curate"
payload := strings.NewReader("{\n \"force\": false,\n \"batch_size\": 123,\n \"scope\": \"<string>\",\n \"trigger\": \"<string>\",\n \"model\": \"<string>\",\n \"pinecone_api_key\": \"<string>\"\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://{host}/api/contexts/{slug}/curate")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"force\": false,\n \"batch_size\": 123,\n \"scope\": \"<string>\",\n \"trigger\": \"<string>\",\n \"model\": \"<string>\",\n \"pinecone_api_key\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://{host}/api/contexts/{slug}/curate")
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 \"force\": false,\n \"batch_size\": 123,\n \"scope\": \"<string>\",\n \"trigger\": \"<string>\",\n \"model\": \"<string>\",\n \"pinecone_api_key\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"task_id": "<string>",
"state": "<string>",
"exploring": true,
"profiling": true,
"importing": true
}{
"message": "<string>",
"code": "<string>"
}Build or rebuild the context's index from its sources
Curate the staged sources under the active manifest. Required before querying — there is no auto-curate. Body is optional; force: true rebuilds fully, which is what a manifest edit needs. Search contexts only: a work context builds via work/groom.
curl --request POST \
--url https://{host}/api/contexts/{slug}/curate \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"force": false,
"batch_size": 123,
"scope": "<string>",
"trigger": "<string>",
"model": "<string>",
"pinecone_api_key": "<string>"
}
'import requests
url = "https://{host}/api/contexts/{slug}/curate"
payload = {
"force": False,
"batch_size": 123,
"scope": "<string>",
"trigger": "<string>",
"model": "<string>",
"pinecone_api_key": "<string>"
}
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({
force: false,
batch_size: 123,
scope: '<string>',
trigger: '<string>',
model: '<string>',
pinecone_api_key: '<string>'
})
};
fetch('https://{host}/api/contexts/{slug}/curate', 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://{host}/api/contexts/{slug}/curate",
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([
'force' => false,
'batch_size' => 123,
'scope' => '<string>',
'trigger' => '<string>',
'model' => '<string>',
'pinecone_api_key' => '<string>'
]),
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://{host}/api/contexts/{slug}/curate"
payload := strings.NewReader("{\n \"force\": false,\n \"batch_size\": 123,\n \"scope\": \"<string>\",\n \"trigger\": \"<string>\",\n \"model\": \"<string>\",\n \"pinecone_api_key\": \"<string>\"\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://{host}/api/contexts/{slug}/curate")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"force\": false,\n \"batch_size\": 123,\n \"scope\": \"<string>\",\n \"trigger\": \"<string>\",\n \"model\": \"<string>\",\n \"pinecone_api_key\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://{host}/api/contexts/{slug}/curate")
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 \"force\": false,\n \"batch_size\": 123,\n \"scope\": \"<string>\",\n \"trigger\": \"<string>\",\n \"model\": \"<string>\",\n \"pinecone_api_key\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"task_id": "<string>",
"state": "<string>",
"exploring": true,
"profiling": true,
"importing": true
}{
"message": "<string>",
"code": "<string>"
}Authorizations
Session token from POST /auth/login, sent as Authorization: Bearer <token>.
Headers
Date-based contract version, echoed back on the same header. Omit for the default (2026-07); send unstable for the in-development surface. An unrecognized value is rejected with 400 unsupported_api_version.
Path Parameters
Context slug or UUID.
Body
Optional overrides for the run. {} is a valid incremental curate.
Full rebuild rather than incremental
How many sources curate reads per pass.
Curate scope recorded on the task input
Provenance label recorded on the task input
Model-id override for the curate runtime
Task-token override; normally not needed
Response
Curate enqueued (state: importing)
What every context-workflow trigger returns. The work is asynchronous: poll GET /tasks/{task_id}. The per-workflow booleans duplicate state and appear only where a workflow's contract names one.
The enqueued task. Poll it at GET /tasks/{id}.
The forward-looking status the trigger put the context into.
Duplicates state; present only for explore
Duplicates state; present only for profile
Duplicates state; present only for the import/curate triggers
Was this page helpful?