GET
/api/v1/domains/:idGet a domain
Returns a single domain by ID, including its current verification status.
Authorization
Authorizationstringheaderrequired
Bearer token. Format: Bearer YOUR_API_KEY
Path Parameters
idstringpathrequired
The ID of the domain to retrieve.
curl https://app.brevr.io/api/v1/domains/dom_abc123 \
-H "Authorization: Bearer YOUR_API_KEY"{
"domain": {
"id": "dom_abc123",
"domain": "go.mycompany.com",
"verified": true,
"verifiedAt": "2024-06-02T12:00:00.000Z",
"createdAt": "2024-06-01T10:00:00.000Z",
"lastCheckedAt": "2024-06-15T08:00:00.000Z",
"failedChecks": 0,
"ownershipVerified": true,
"verificationToken": null,
"dnsProvider": "CLOUDFLARE"
}
}Last updated on