List supported cloud providers
curl --request GET \
--url https://api.trycomp.ai/v1/cloud-security/providersconst options = {method: 'GET'};
fetch('https://api.trycomp.ai/v1/cloud-security/providers', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.trycomp.ai/v1/cloud-security/providers"
response = requests.get(url)
print(response.text)Cloud Security
List supported cloud providers | Comp AI API
List supported cloud providers in Comp AI. Run AWS, Azure, and GCP cloud security scans, detect enabled services, review findings, and connect cloud posture.
GET
/
v1
/
cloud-security
/
providers
List supported cloud providers
curl --request GET \
--url https://api.trycomp.ai/v1/cloud-security/providersconst options = {method: 'GET'};
fetch('https://api.trycomp.ai/v1/cloud-security/providers', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.trycomp.ai/v1/cloud-security/providers"
response = requests.get(url)
print(response.text)Response
200 - undefined
Was this page helpful?

