Read a synced report
curl --request GET \
--url http://localhost:3000/api/v1/reports/{id} \
--cookie myrqen_session=import requests
url = "http://localhost:3000/api/v1/reports/{id}"
headers = {"cookie": "myrqen_session="}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {cookie: 'myrqen_session='}};
fetch('http://localhost:3000/api/v1/reports/{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_PORT => "3000",
CURLOPT_URL => "http://localhost:3000/api/v1/reports/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_COOKIE => "myrqen_session=",
]);
$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 := "http://localhost:3000/api/v1/reports/{id}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("cookie", "myrqen_session=")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("http://localhost:3000/api/v1/reports/{id}")
.header("cookie", "myrqen_session=")
.asString();require 'uri'
require 'net/http'
url = URI("http://localhost:3000/api/v1/reports/{id}")
http = Net::HTTP.new(url.host, url.port)
request = Net::HTTP::Get.new(url)
request["cookie"] = 'myrqen_session='
response = http.request(request)
puts response.read_body{
"state": "<string>",
"report": {
"id": "<string>",
"schemaVersion": "1.0.0",
"projectedFor": {
"label": "<string>"
},
"generatedAt": "2023-11-07T05:31:56Z",
"project": {},
"scan": {},
"authorization": {},
"summary": {
"findingCount": 123,
"severityCounts": {
"critical": 123,
"high": 123,
"medium": 123,
"low": 123,
"info": 123
},
"verificationCounts": {
"verified": 123,
"strong_evidence": 123,
"needs_review": 123
},
"candidateCount": 123,
"duplicateCount": 123,
"fixedCount": 123
},
"findings": [
{
"id": "MYR-001",
"title": "<string>",
"category": "<string>",
"summary": "<string>",
"impact": "<string>",
"affected": {
"component": "<string>",
"file": "<string>",
"lineStart": 123,
"lineEnd": 123,
"route": "<string>",
"origin": "<string>"
},
"evidence": [
{
"description": "<string>",
"snippet": "<string>",
"location": "<string>",
"redacted": true
}
],
"remediation": "<string>",
"verificationPlan": "<string>",
"taxonomy": [
"<string>"
],
"corroboration": [
{
"description": "<string>",
"snippet": "<string>",
"location": "<string>",
"redacted": true
}
],
"reproduction": "<string>",
"references": [
"<string>"
],
"fingerprint": "<string>",
"secretReferences": [
{
"label": "<string>",
"kind": "<string>",
"fingerprint": "<string>",
"location": "<string>"
}
],
"fixedAt": "2023-11-07T05:31:56Z",
"fixHistory": [
{
"at": "2023-11-07T05:31:56Z",
"verified": true,
"changedFiles": [
"<string>"
],
"note": "<string>"
}
],
"firstSeenAt": "2023-11-07T05:31:56Z",
"tags": [
"<string>"
]
}
],
"coverage": [
"<string>"
],
"coverageAreas": [
{}
],
"limitations": [
"<string>"
],
"methodologyVersion": "<string>",
"redactionNotice": "<string>"
},
"expiresAt": "2023-11-07T05:31:56Z",
"meta": {
"id": "<string>",
"projectName": "<string>",
"workspaceName": "<string>",
"state": "<string>",
"effortRequested": "<string>",
"agentName": "<string>",
"modelName": "<string>",
"expiresAt": "2023-11-07T05:31:56Z",
"syncCreatedAt": "2023-11-07T05:31:56Z"
}
}{
"error": {
"code": "SYNC_WEEKLY_LIMIT_REACHED",
"message": "Cloud report limit reached. This scan stays local.",
"requestId": "8f14e45f-ceea-467a-9f8b-2b6b2b6a1f2c",
"details": {
"weekly": {
"used": 15,
"limit": 15,
"resetsAt": "2026-08-24T06:00:00.000Z"
}
}
}
}{
"error": {
"code": "SYNC_WEEKLY_LIMIT_REACHED",
"message": "Cloud report limit reached. This scan stays local.",
"requestId": "8f14e45f-ceea-467a-9f8b-2b6b2b6a1f2c",
"details": {
"weekly": {
"used": 15,
"limit": 15,
"resetsAt": "2026-08-24T06:00:00.000Z"
}
}
}
}Reports
Read a synced report
Owner and workspace-member access. A platform administrator has no path to report content here — that requires an explicit, expiring support grant.
While a report is still live and has no stored body, report is null and meta carries what is known so far. Workspace-member reads are audited.
GET
/
api
/
v1
/
reports
/
{id}
Read a synced report
curl --request GET \
--url http://localhost:3000/api/v1/reports/{id} \
--cookie myrqen_session=import requests
url = "http://localhost:3000/api/v1/reports/{id}"
headers = {"cookie": "myrqen_session="}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {cookie: 'myrqen_session='}};
fetch('http://localhost:3000/api/v1/reports/{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_PORT => "3000",
CURLOPT_URL => "http://localhost:3000/api/v1/reports/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_COOKIE => "myrqen_session=",
]);
$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 := "http://localhost:3000/api/v1/reports/{id}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("cookie", "myrqen_session=")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("http://localhost:3000/api/v1/reports/{id}")
.header("cookie", "myrqen_session=")
.asString();require 'uri'
require 'net/http'
url = URI("http://localhost:3000/api/v1/reports/{id}")
http = Net::HTTP.new(url.host, url.port)
request = Net::HTTP::Get.new(url)
request["cookie"] = 'myrqen_session='
response = http.request(request)
puts response.read_body{
"state": "<string>",
"report": {
"id": "<string>",
"schemaVersion": "1.0.0",
"projectedFor": {
"label": "<string>"
},
"generatedAt": "2023-11-07T05:31:56Z",
"project": {},
"scan": {},
"authorization": {},
"summary": {
"findingCount": 123,
"severityCounts": {
"critical": 123,
"high": 123,
"medium": 123,
"low": 123,
"info": 123
},
"verificationCounts": {
"verified": 123,
"strong_evidence": 123,
"needs_review": 123
},
"candidateCount": 123,
"duplicateCount": 123,
"fixedCount": 123
},
"findings": [
{
"id": "MYR-001",
"title": "<string>",
"category": "<string>",
"summary": "<string>",
"impact": "<string>",
"affected": {
"component": "<string>",
"file": "<string>",
"lineStart": 123,
"lineEnd": 123,
"route": "<string>",
"origin": "<string>"
},
"evidence": [
{
"description": "<string>",
"snippet": "<string>",
"location": "<string>",
"redacted": true
}
],
"remediation": "<string>",
"verificationPlan": "<string>",
"taxonomy": [
"<string>"
],
"corroboration": [
{
"description": "<string>",
"snippet": "<string>",
"location": "<string>",
"redacted": true
}
],
"reproduction": "<string>",
"references": [
"<string>"
],
"fingerprint": "<string>",
"secretReferences": [
{
"label": "<string>",
"kind": "<string>",
"fingerprint": "<string>",
"location": "<string>"
}
],
"fixedAt": "2023-11-07T05:31:56Z",
"fixHistory": [
{
"at": "2023-11-07T05:31:56Z",
"verified": true,
"changedFiles": [
"<string>"
],
"note": "<string>"
}
],
"firstSeenAt": "2023-11-07T05:31:56Z",
"tags": [
"<string>"
]
}
],
"coverage": [
"<string>"
],
"coverageAreas": [
{}
],
"limitations": [
"<string>"
],
"methodologyVersion": "<string>",
"redactionNotice": "<string>"
},
"expiresAt": "2023-11-07T05:31:56Z",
"meta": {
"id": "<string>",
"projectName": "<string>",
"workspaceName": "<string>",
"state": "<string>",
"effortRequested": "<string>",
"agentName": "<string>",
"modelName": "<string>",
"expiresAt": "2023-11-07T05:31:56Z",
"syncCreatedAt": "2023-11-07T05:31:56Z"
}
}{
"error": {
"code": "SYNC_WEEKLY_LIMIT_REACHED",
"message": "Cloud report limit reached. This scan stays local.",
"requestId": "8f14e45f-ceea-467a-9f8b-2b6b2b6a1f2c",
"details": {
"weekly": {
"used": 15,
"limit": 15,
"resetsAt": "2026-08-24T06:00:00.000Z"
}
}
}
}{
"error": {
"code": "SYNC_WEEKLY_LIMIT_REACHED",
"message": "Cloud report limit reached. This scan stays local.",
"requestId": "8f14e45f-ceea-467a-9f8b-2b6b2b6a1f2c",
"details": {
"weekly": {
"used": 15,
"limit": 15,
"resetsAt": "2026-08-24T06:00:00.000Z"
}
}
}
}Authorizations
Browser session cookie: httpOnly, sameSite=lax, Secure when APP_BASE_URL is https, 30-day lifetime. Deliberately separate from CLI device credentials.
Path Parameters
The cloud report id.
Response
The report projection for this viewer, or metadata when no body is stored yet.
⌘I