Boost Node
curl --request POST \
--url https://api.example.com/api/v1/kg/boards/{board_id}/nodes/{node_id}/boostimport requests
url = "https://api.example.com/api/v1/kg/boards/{board_id}/nodes/{node_id}/boost"
response = requests.post(url)
print(response.text)const options = {method: 'POST'};
fetch('https://api.example.com/api/v1/kg/boards/{board_id}/nodes/{node_id}/boost', 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.example.com/api/v1/kg/boards/{board_id}/nodes/{node_id}/boost",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
]);
$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.example.com/api/v1/kg/boards/{board_id}/nodes/{node_id}/boost"
req, _ := http.NewRequest("POST", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.example.com/api/v1/kg/boards/{board_id}/nodes/{node_id}/boost")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/api/v1/kg/boards/{board_id}/nodes/{node_id}/boost")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
response = http.request(request)
puts response.read_body{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"ctx": {},
"input": "<unknown>"
}
]
}knowledge-graph
Boost Node
Increment a node’s relevance_score by a fixed +0.3 with clamp [0, 1.5].
Persists an audit entry to ConsolidationAudit with event_type
kg.node.boosted. Idempotency is NOT enforced — each call stacks
another +0.3 until the clamp is reached, by design (repeat clicks
should reflect repeat intent).
Responses:
200 — {node_id, node_type, score_before, score_after, boosted_at, boosted_by}
404 — node not found in any table of the per-board graph
POST
/
api
/
v1
/
kg
/
boards
/
{board_id}
/
nodes
/
{node_id}
/
boost
Boost Node
curl --request POST \
--url https://api.example.com/api/v1/kg/boards/{board_id}/nodes/{node_id}/boostimport requests
url = "https://api.example.com/api/v1/kg/boards/{board_id}/nodes/{node_id}/boost"
response = requests.post(url)
print(response.text)const options = {method: 'POST'};
fetch('https://api.example.com/api/v1/kg/boards/{board_id}/nodes/{node_id}/boost', 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.example.com/api/v1/kg/boards/{board_id}/nodes/{node_id}/boost",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
]);
$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.example.com/api/v1/kg/boards/{board_id}/nodes/{node_id}/boost"
req, _ := http.NewRequest("POST", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.example.com/api/v1/kg/boards/{board_id}/nodes/{node_id}/boost")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/api/v1/kg/boards/{board_id}/nodes/{node_id}/boost")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
response = http.request(request)
puts response.read_body{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"ctx": {},
"input": "<unknown>"
}
]
}Last modified on May 17, 2026
⌘I