Get framework readiness scores
curl --request GET \
--url https://api.trycomp.ai/v1/frameworks/scores \
--header 'X-API-Key: <api-key>'const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.trycomp.ai/v1/frameworks/scores', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.trycomp.ai/v1/frameworks/scores"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)Frameworks
Get framework readiness scores | Comp AI API
Retrieve framework readiness scores so teams can report progress toward audit readiness across active compliance standards.
GET
/
v1
/
frameworks
/
scores
Get framework readiness scores
curl --request GET \
--url https://api.trycomp.ai/v1/frameworks/scores \
--header 'X-API-Key: <api-key>'const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.trycomp.ai/v1/frameworks/scores', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.trycomp.ai/v1/frameworks/scores"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)Authorizations
API key for authentication
Response
200 - undefined
Was this page helpful?

