Skip to main content
GET
/
v1
/
custom-domains
/
:domain_id
/
status
Check Domain Status
curl --request GET \
  --url https://api.oviond.com/v1/custom-domains/:domain_id/status \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "id": "<string>",
    "domain": "<string>",
    "is_default": true,
    "created_at": "<string>",
    "domain_records": [
      {
        "type": "<string>",
        "name": "<string>",
        "value": "<string>"
      }
    ],
    "vercel_verification": [
      {
        "type": "<string>",
        "domain": "<string>",
        "value": "<string>"
      }
    ],
    "dns_records": [
      {
        "type": "<string>",
        "name": "<string>",
        "value": "<string>"
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

domain_id
string
required

Response

Domain status

success
enum<boolean>
required
Available options:
true
data
object
required