Skip to main content
GET
/
sites
/
environments
/
domains
/
{site_domain_id}
/
verification-records
Get list of verification and pointing records for the site domain
curl --request GET \
  --url https://api.kinsta.com/v2/sites/environments/domains/{site_domain_id}/verification-records \
  --header 'Authorization: Bearer <token>'
{
  "site_domain": {
    "verification_records": [
      {
        "name": "_acme-challenge.staging.example-site.io",
        "value": "staging.example-site.io.kinstavalidation.app",
        "type": "CNAME"
      }
    ],
    "pointing_records": [
      {
        "name": "staging.example-site.io",
        "value": "192.0.2.10",
        "type": "A"
      },
      {
        "name": "www",
        "value": "staging.example-site.io",
        "type": "CNAME"
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

site_domain_id
string<uuid>
required
Example:

"54fb80af-576c-4fdc-ba4f-b596c83f15a1"

Response

Response object of verification and pointing records requests

site_domain
object
required