Queue a report
curl --request POST \
--url https://aquila.attaxr.com/api/reports \
--header 'Content-Type: application/json' \
--cookie better-auth.session_token= \
--data '
{
"vulnerabilityId": "<string>"
}
'const options = {
method: 'POST',
headers: {cookie: 'better-auth.session_token=', 'Content-Type': 'application/json'},
body: JSON.stringify({vulnerabilityId: '<string>'})
};
fetch('https://aquila.attaxr.com/api/reports', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://aquila.attaxr.com/api/reports"
payload = { "vulnerabilityId": "<string>" }
headers = {
"cookie": "better-auth.session_token=",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text){
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}Reports
Queue a report
Queues one AI-generated Markdown report for a finding. An active report for the same finding returns with 200 instead of double-generating.
POST
/
api
/
reports
Queue a report
curl --request POST \
--url https://aquila.attaxr.com/api/reports \
--header 'Content-Type: application/json' \
--cookie better-auth.session_token= \
--data '
{
"vulnerabilityId": "<string>"
}
'const options = {
method: 'POST',
headers: {cookie: 'better-auth.session_token=', 'Content-Type': 'application/json'},
body: JSON.stringify({vulnerabilityId: '<string>'})
};
fetch('https://aquila.attaxr.com/api/reports', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://aquila.attaxr.com/api/reports"
payload = { "vulnerabilityId": "<string>" }
headers = {
"cookie": "better-auth.session_token=",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text){
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}
