Get domain verification status
curl --request GET \
--url https://api.trycomp.ai/v1/trust-portal/domain/status \
--header 'X-API-Key: <api-key>'const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.trycomp.ai/v1/trust-portal/domain/status', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.trycomp.ai/v1/trust-portal/domain/status"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text){
"domain": "<string>",
"verified": true,
"verification": [
{
"type": "<string>",
"domain": "<string>",
"value": "<string>",
"reason": "<string>"
}
],
"cnameTarget": "3a69a5bb27875189.vercel-dns-016.com",
"misconfigured": {}
}Trust Portal
Get domain verification status | Comp AI API
Get domain verification status in Comp AI. Configure the live Trust Center, custom domain, public overview, FAQs, compliance resources, documents, links.
GET
/
v1
/
trust-portal
/
domain
/
status
Get domain verification status
curl --request GET \
--url https://api.trycomp.ai/v1/trust-portal/domain/status \
--header 'X-API-Key: <api-key>'const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.trycomp.ai/v1/trust-portal/domain/status', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.trycomp.ai/v1/trust-portal/domain/status"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text){
"domain": "<string>",
"verified": true,
"verification": [
{
"type": "<string>",
"domain": "<string>",
"value": "<string>",
"reason": "<string>"
}
],
"cnameTarget": "3a69a5bb27875189.vercel-dns-016.com",
"misconfigured": {}
}Authorizations
API key for authentication
Query Parameters
The domain name to check status for
Example:
"portal.example.com"
Response
Domain status retrieved successfully
The domain name
Whether the domain is verified
Verification records for the domain
Show child attributes
Show child attributes
The recommended CNAME target for this domain from Vercel
Example:
"3a69a5bb27875189.vercel-dns-016.com"
Whether Vercel's /v6/domains/{d}/config call reports the domain as misconfigured. Null when Vercel could not be reached.
Was this page helpful?

