Findings
Get a finding
Returns one finding with its metrics, related findings, latest verification, and latest investigation including causes and suggested fixes.
Unlike listing, this reads any finding in the project — quiet and dismissed findings included.
related_findings is capped at 24 entries.
GET
/
findings
/
{finding_id}
Get a finding
curl --request GET \
--url https://api.kapso.ai/platform/v1/findings/{finding_id} \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.kapso.ai/platform/v1/findings/{finding_id}"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.kapso.ai/platform/v1/findings/{finding_id}', 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.kapso.ai/platform/v1/findings/{finding_id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-Key: <api-key>"
],
]);
$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.kapso.ai/platform/v1/findings/{finding_id}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-Key", "<api-key>")
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.kapso.ai/platform/v1/findings/{finding_id}")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.kapso.ai/platform/v1/findings/{finding_id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"data": {
"id": "8f14e45f-ceea-467a-9e1a-1b2c3d4e5f60",
"source_type": "project_event",
"source_key": "conversation.user_frustrated",
"signal_name": "conversation.user_frustrated",
"direction": "rising",
"status": "open",
"affected_count": 42,
"baseline_count": 11,
"current_rate": 0.18,
"baseline_rate": 0.05,
"evidence_revision": 3,
"last_observed_at": "2026-08-26T09:12:00.000000Z",
"window_start_at": "2026-08-19T00:00:00.000000Z",
"window_end_at": "2026-08-26T00:00:00.000000Z",
"last_qualified_at": "2026-08-26T09:15:00.000000Z",
"affected_unit": "conversations",
"workflow_id": "c0ffee00-1111-4222-8333-444455556666",
"workflow_name": "Order support",
"verification": null,
"related_findings": [],
"investigation": {
"id": "1a2b3c4d-5e6f-4a7b-8c9d-0e1f2a3b4c5d",
"status": "completed",
"retryable": false,
"retry_reason": null,
"error_message": null,
"created_at": "2026-08-26T09:40:00.000000Z",
"completed_at": "2026-08-26T10:04:00.000000Z",
"workflow_id": "c0ffee00-1111-4222-8333-444455556666",
"workflow_name": "Order support",
"result": {
"summary": "Users repeat themselves when the workflow loses the order number.",
"alternative_explanations": [],
"coverage_limitations": [],
"affected_components": [
"Order support"
],
"causes": [
{
"title": "Checkout step asks for the order number twice",
"explanation": "The confirm node does not read the value captured earlier.",
"confidence": "high",
"evidence_references": [
{
"source_type": "project_event",
"source_id": "7d1f0e2a-3b4c-4d5e-9f60-718293a4b5c6",
"observation": "User resent the order number after the confirm prompt.",
"occurred_at": "2026-08-25T14:02:00.000000Z"
}
]
}
],
"suggested_fixes": [
{
"title": "Reuse the captured order number in the confirm node",
"priority": "primary",
"category": "workflow",
"change": "Read `order_number` from state instead of prompting again.",
"verification": "Frustration events should drop below the 5% baseline.",
"target": {
"name": "Order support",
"location": "Confirm order node"
},
"evidence_references": []
}
]
}
}
}
}{
"error": "<string>"
}{
"error": "Finding not found in this project.",
"code": "finding_not_found"
}Was this page helpful?
⌘I
Get a finding
curl --request GET \
--url https://api.kapso.ai/platform/v1/findings/{finding_id} \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.kapso.ai/platform/v1/findings/{finding_id}"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.kapso.ai/platform/v1/findings/{finding_id}', 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.kapso.ai/platform/v1/findings/{finding_id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-Key: <api-key>"
],
]);
$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.kapso.ai/platform/v1/findings/{finding_id}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-Key", "<api-key>")
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.kapso.ai/platform/v1/findings/{finding_id}")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.kapso.ai/platform/v1/findings/{finding_id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"data": {
"id": "8f14e45f-ceea-467a-9e1a-1b2c3d4e5f60",
"source_type": "project_event",
"source_key": "conversation.user_frustrated",
"signal_name": "conversation.user_frustrated",
"direction": "rising",
"status": "open",
"affected_count": 42,
"baseline_count": 11,
"current_rate": 0.18,
"baseline_rate": 0.05,
"evidence_revision": 3,
"last_observed_at": "2026-08-26T09:12:00.000000Z",
"window_start_at": "2026-08-19T00:00:00.000000Z",
"window_end_at": "2026-08-26T00:00:00.000000Z",
"last_qualified_at": "2026-08-26T09:15:00.000000Z",
"affected_unit": "conversations",
"workflow_id": "c0ffee00-1111-4222-8333-444455556666",
"workflow_name": "Order support",
"verification": null,
"related_findings": [],
"investigation": {
"id": "1a2b3c4d-5e6f-4a7b-8c9d-0e1f2a3b4c5d",
"status": "completed",
"retryable": false,
"retry_reason": null,
"error_message": null,
"created_at": "2026-08-26T09:40:00.000000Z",
"completed_at": "2026-08-26T10:04:00.000000Z",
"workflow_id": "c0ffee00-1111-4222-8333-444455556666",
"workflow_name": "Order support",
"result": {
"summary": "Users repeat themselves when the workflow loses the order number.",
"alternative_explanations": [],
"coverage_limitations": [],
"affected_components": [
"Order support"
],
"causes": [
{
"title": "Checkout step asks for the order number twice",
"explanation": "The confirm node does not read the value captured earlier.",
"confidence": "high",
"evidence_references": [
{
"source_type": "project_event",
"source_id": "7d1f0e2a-3b4c-4d5e-9f60-718293a4b5c6",
"observation": "User resent the order number after the confirm prompt.",
"occurred_at": "2026-08-25T14:02:00.000000Z"
}
]
}
],
"suggested_fixes": [
{
"title": "Reuse the captured order number in the confirm node",
"priority": "primary",
"category": "workflow",
"change": "Read `order_number` from state instead of prompting again.",
"verification": "Frustration events should drop below the 5% baseline.",
"target": {
"name": "Order support",
"location": "Confirm order node"
},
"evidence_references": []
}
]
}
}
}
}{
"error": "<string>"
}{
"error": "Finding not found in this project.",
"code": "finding_not_found"
}
