curl --request GET \
--url http://localhost:3333/v1/trust-portal/domain/status \
--header 'X-API-Key: <api-key>'{
"domain": "<string>",
"verified": true,
"verification": [
{
"type": "<string>",
"domain": "<string>",
"value": "<string>",
"reason": "<string>"
}
],
"cnameTarget": "3a69a5bb27875189.vercel-dns-016.com",
"misconfigured": {}
}Retrieve the verification status and DNS records for a custom domain configured in the Vercel trust portal project
curl --request GET \
--url http://localhost:3333/v1/trust-portal/domain/status \
--header 'X-API-Key: <api-key>'{
"domain": "<string>",
"verified": true,
"verification": [
{
"type": "<string>",
"domain": "<string>",
"value": "<string>",
"reason": "<string>"
}
],
"cnameTarget": "3a69a5bb27875189.vercel-dns-016.com",
"misconfigured": {}
}API key for authentication
The domain name to check status for
"portal.example.com"
Domain status retrieved successfully
The domain name
Whether the domain is verified
Verification records for the domain
Show child attributes
The recommended CNAME target for this domain from Vercel
"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?