Skip to main content
POST
/
api
/
domains
/
add
curl -X POST https://api.dyeink.com/api/domains/add \
  -H "Content-Type: application/json" \
  -d '{
    "domain": "blog.example.com"
  }'
{
  "success": true,
  "verified": false
}

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.

Adds a custom domain to the Vercel project. This is an internal endpoint that communicates with the Vercel API to register the domain.

Body Parameters

domain
string
required
The custom domain to add (e.g., “blog.example.com”)

Response

success
boolean
Whether the domain was successfully added
verified
boolean
Whether the domain is immediately verified (rare, usually when domain was previously configured)
curl -X POST https://api.dyeink.com/api/domains/add \
  -H "Content-Type: application/json" \
  -d '{
    "domain": "blog.example.com"
  }'
{
  "success": true,
  "verified": false
}