Skip to main content
GET
/
v1
/
custom-domains
List Domains
curl --request GET \
  --url https://api.oviond.com/v1/custom-domains \
  --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>"
        }
      ]
    }
  ],
  "meta": {
    "limit": 123,
    "used": 123
  }
}

Authorizations

Authorization
string
header
required

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

Response

200 - application/json

Domain list

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