Documentation Index
Fetch the complete documentation index at: https://mintlify.com/subratomandal/dyeink/llms.txt
Use this file to discover all available pages before exploring further.
Checks the verification status of a domain with Vercel. Returns the current verification status and any DNS records that need to be configured.
Query Parameters
The domain to verify (e.g., “blog.example.com”)
Response
Whether the domain is verified
Status of the domain when verified (“active”)
Array of DNS records needed for verification (only present when not verified)Show verification properties
Type of DNS record (e.g., TXT, A, CNAME)
Domain or subdomain where the record should be added
Explanation of why this record is needed
curl -X GET "https://api.dyeink.com/api/domains/verify?domain=blog.example.com"
{
"verified": true,
"status": "active"
}