List a check run's results
curl --request GET \
--url https://api.trycomp.ai/v1/integrations/tasks/{taskId}/runs/{runId}/results \
--header 'X-API-Key: <api-key>'const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.trycomp.ai/v1/integrations/tasks/{taskId}/runs/{runId}/results', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.trycomp.ai/v1/integrations/tasks/{taskId}/runs/{runId}/results"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)Integrations
List a check run's results | Comp AI API
Returns one page of a check run’s per-resource results (findings and passing rows) for a task. The run list only carries a small sample per run; use this.
GET
/
v1
/
integrations
/
tasks
/
{taskId}
/
runs
/
{runId}
/
results
List a check run's results
curl --request GET \
--url https://api.trycomp.ai/v1/integrations/tasks/{taskId}/runs/{runId}/results \
--header 'X-API-Key: <api-key>'const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.trycomp.ai/v1/integrations/tasks/{taskId}/runs/{runId}/results', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.trycomp.ai/v1/integrations/tasks/{taskId}/runs/{runId}/results"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)Authorizations
API key for authentication
Query Parameters
Return only failing (false) or only passing (true) rows. Omit for both.
Example:
"false"
Rows to skip within the filtered stream. Defaults to 0. Paging is bounded at 100000 rows per stream; a deeper offset is rejected with 400 rather than silently returning an earlier page. The last page inside the bound reports limitReached: true with hasMore: false when the stream still holds rows past it — export the run report to read those.
Example:
"0"
Rows per page (max 200). Defaults to 50.
Example:
"50"
Response
200 - undefined
Was this page helpful?

