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": "cname.vercel-dns.com"
}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": "cname.vercel-dns.com"
}API key for authentication
The domain name to check status for
"portal.example.com"
Domain status retrieved successfully
Was this page helpful?