Skip to main content
GET
/
outbound
/
domains
/
{uuid}
Get a domain
curl --request GET \
  --url https://api.jetemail.com/outbound/domains/{uuid} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "domain": {
    "uuid": "b814c25d-b18c-4044-ae31-49e22ce908b5",
    "domain": "example.com",
    "status": "active",
    "created_date": "1735689600.0",
    "last_modified": "1735689600.0",
    "dns": {
      "dkim": {
        "host": "jetemail._domainkey.example.com",
        "value": "dkim.jetsmtp.net",
        "verified": true
      },
      "spf": {
        "host": "em12345.example.com",
        "value": "return.jetsmtp.net",
        "type": "CNAME",
        "verified": true
      },
      "dmarc": {
        "host": "_dmarc.example.com",
        "value": "v=DMARC1; p=none",
        "verified": true
      },
      "tracking": {
        "host": "links.example.com",
        "value": "link-us.jete.ml",
        "type": "CNAME",
        "required": false,
        "verified": false
      }
    }
  }
}

Documentation Index

Fetch the complete documentation index at: https://jetemail.com/docs/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

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

Path Parameters

uuid
string
required
Pattern: ^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$
Example:

"b814c25d-b18c-4044-ae31-49e22ce908b5"

Response

Domain found

success
boolean
Example:

true

domain
object