List pentest finding context notes
curl --request GET \
--url https://api.trycomp.ai/v1/pentest-finding-contexts \
--header 'X-API-Key: <api-key>'const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.trycomp.ai/v1/pentest-finding-contexts', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.trycomp.ai/v1/pentest-finding-contexts"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)Security Penetration Tests
List pentest finding context notes | Comp AI API
Returns the customer-written context notes attached to pentest findings for a target URL. These notes are shared with the testing agent on future scans of.
GET
/
v1
/
pentest-finding-contexts
List pentest finding context notes
curl --request GET \
--url https://api.trycomp.ai/v1/pentest-finding-contexts \
--header 'X-API-Key: <api-key>'const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.trycomp.ai/v1/pentest-finding-contexts', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.trycomp.ai/v1/pentest-finding-contexts"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)Was this page helpful?

