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>"
}(Re)build 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. Set force: true to do a full rebuild (use after editing the manifest); the default is an incremental curate. Search contexts only — a work context builds via work/groom instead.
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. Pass as Authorization: Bearer <token>. The alternative X-Pinecone-Api-Key header is also accepted for direct-key auth (used by the Nexus CLI on first contact).
Headers
Date-based contract version. Omit to resolve to the Nexus default version (2026-07, the oldest served version); send unstable for the in-development surface. The resolved version is echoed back on the same header. A present-but-unrecognized value is rejected with 400 unsupported_api_version.
Path Parameters
Context slug or UUID.
Body
Full rebuild rather than incremental
Curation batch size
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)
The uniform acknowledgment every context-workflow trigger returns. state is the forward-looking status; the per-workflow boolean flags are legacy and set only for the workflows that historically emitted them.
Was this page helpful?