Generate reinforcements
curl --request POST \
--url https://aquila.attaxr.com/api/reinforcements/generate \
--header 'Content-Type: application/json' \
--cookie better-auth.session_token= \
--data '
{
"vulnerabilities": [
{
"name": "<string>",
"category": {
"name": "<string>",
"isCustom": true
},
"description": "<string>",
"poc": "<string>",
"stepsToReproduce": "<string>",
"cvss": "<string>",
"impact": "<string>",
"otherInfo": "<string>"
}
]
}
'const options = {
method: 'POST',
headers: {cookie: 'better-auth.session_token=', 'Content-Type': 'application/json'},
body: JSON.stringify({
vulnerabilities: [
{
name: '<string>',
category: {name: '<string>', isCustom: true},
description: '<string>',
poc: '<string>',
stepsToReproduce: '<string>',
cvss: '<string>',
impact: '<string>',
otherInfo: '<string>'
}
]
})
};
fetch('https://aquila.attaxr.com/api/reinforcements/generate', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://aquila.attaxr.com/api/reinforcements/generate"
payload = { "vulnerabilities": [
{
"name": "<string>",
"category": {
"name": "<string>",
"isCustom": True
},
"description": "<string>",
"poc": "<string>",
"stepsToReproduce": "<string>",
"cvss": "<string>",
"impact": "<string>",
"otherInfo": "<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>"
}Reinforcements
Generate reinforcements
Runs AI generation over accepted vulnerability entries.
POST
/
api
/
reinforcements
/
generate
Generate reinforcements
curl --request POST \
--url https://aquila.attaxr.com/api/reinforcements/generate \
--header 'Content-Type: application/json' \
--cookie better-auth.session_token= \
--data '
{
"vulnerabilities": [
{
"name": "<string>",
"category": {
"name": "<string>",
"isCustom": true
},
"description": "<string>",
"poc": "<string>",
"stepsToReproduce": "<string>",
"cvss": "<string>",
"impact": "<string>",
"otherInfo": "<string>"
}
]
}
'const options = {
method: 'POST',
headers: {cookie: 'better-auth.session_token=', 'Content-Type': 'application/json'},
body: JSON.stringify({
vulnerabilities: [
{
name: '<string>',
category: {name: '<string>', isCustom: true},
description: '<string>',
poc: '<string>',
stepsToReproduce: '<string>',
cvss: '<string>',
impact: '<string>',
otherInfo: '<string>'
}
]
})
};
fetch('https://aquila.attaxr.com/api/reinforcements/generate', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://aquila.attaxr.com/api/reinforcements/generate"
payload = { "vulnerabilities": [
{
"name": "<string>",
"category": {
"name": "<string>",
"isCustom": True
},
"description": "<string>",
"poc": "<string>",
"stepsToReproduce": "<string>",
"cvss": "<string>",
"impact": "<string>",
"otherInfo": "<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>"
}Authorizations
apiKeyCookieapiKeyHeaderbearerAuth
Browser session cookie set by Better Auth sign-in.
Body
application/json
Response
The generated entries.

