← Back to API Reference

POST /domains/{domain_id}/verify

Verify Domain

Run DNS verification checks for a configured sending domain.

Request (cURL)

curl -X POST "http://localhost:8080/v1/domains/dom_123/verify" \
  -H "Authorization: Bearer <API_KEY>" \
  -H "Content-Type: application/json" \
  -d '{}'

Response Example

{
  "object": "domain",
  "id": "dom_123",
  "status": "verified",
  "checks": []
}

Request Body Example

{}