GET
/api/v1/domainsList domains
Returns all custom domains in your workspace with their current verification status and active link count.
Authorization
Authorizationstringheaderrequired
Bearer token. Format: Bearer YOUR_API_KEY
curl https://app.brevr.io/api/v1/domains \
-H "Authorization: Bearer YOUR_API_KEY"{
"domains": [
{
"id": "dom_abc123",
"domain": "go.mycompany.com",
"verified": true,
"verifiedAt": "2024-06-02T12:00:00.000Z",
"createdAt": "2024-06-01T10:00:00.000Z",
"status": "ACTIVE",
"lastCheckedAt": "2024-06-15T08:00:00.000Z",
"failedChecks": 0,
"activeLinks": 127,
"ownershipVerified": true,
"verificationToken": null,
"dnsProvider": "CLOUDFLARE"
}
]
}Last updated on