Skip to main content
GET
/
outbound
/
domains
Get domains
curl --request GET \
  --url https://api.jetemail.com/outbound/domains \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "domains": [
    {
      "uuid": "550e8400-e29b-41d4-a716-446655440000",
      "domain": "example.com",
      "status": "active",
      "created_date": 1735689600,
      "last_modified": 1735689600,
      "dns": {
        "dkim": {
          "host": "jetemail._domainkey.example.com",
          "value": "dkim.jetsmtp.net",
          "verified": true
        },
        "spf": {
          "host": "example.com",
          "value": "v=spf1 include:spf.jetsmtp.net ~all",
          "verified": true
        },
        "dmarc": {
          "host": "_dmarc.example.com",
          "value": "v=DMARC1; p=none",
          "verified": true
        },
        "feedback": {
          "host": "jetemail._feedback._domainkey.example.com",
          "value": "feedback.jetsmtp.net",
          "verified": true
        }
      }
    }
  ]
}

Authorizations

Authorization
string
header
required

API key for account management endpoints. Use your api_ prefixed token.

Response

Successfully retrieved domains

success
boolean
Example:

true

domains
object[]