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>"
}
]
}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>"
}
]
}API key for authentication
Organization ID (required for session auth, optional for API key auth)
The domain name to check status for
"portal.example.com"
Domain status retrieved successfully
The domain name
Whether the domain is verified
Was this page helpful?