Skip to main content
POST
/
api
/
domains
/
connect
curl -X POST https://api.dyeink.com/api/domains/connect \
  -H "Content-Type: application/json" \
  -d '{
    "domain": "blog.example.com"
  }'
{
  "name": "blog.example.com",
  "verified": false,
  "verification": [
    {
      "type": "TXT",
      "domain": "_vercel.blog.example.com",
      "value": "vc-domain-verify=abc123def456",
      "reason": "Domain verification"
    }
  ]
}

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.

Connects a custom domain to the Vercel project by adding it to the project’s domain configuration. This endpoint communicates directly with the Vercel API.

Body Parameters

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

Response

Returns the Vercel API response containing domain configuration details.
name
string
The domain name
verified
boolean
Whether the domain is verified
verification
object[]
Array of DNS records needed for verification (only present when not verified)
curl -X POST https://api.dyeink.com/api/domains/connect \
  -H "Content-Type: application/json" \
  -d '{
    "domain": "blog.example.com"
  }'
{
  "name": "blog.example.com",
  "verified": false,
  "verification": [
    {
      "type": "TXT",
      "domain": "_vercel.blog.example.com",
      "value": "vc-domain-verify=abc123def456",
      "reason": "Domain verification"
    }
  ]
}

Build docs developers (and LLMs) love