> ## Documentation Index
> Fetch the complete documentation index at: https://docs.mailofly.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Retrieve Domain

> Retrieve domain status and DNS records.

Fetches current verification state and DNS record values for a specific domain.

### Path Parameters

<ParamField path="id" type="string" required>
  The unique identifier of the domain.
</ParamField>

### Response

<ResponseField name="data" type="object">
  <ResponseField name="id" type="string">Domain ID.</ResponseField>
  <ResponseField name="domain" type="string">Domain name.</ResponseField>
  <ResponseField name="ses_identity_status" type="string">Identity verification status.</ResponseField>
  <ResponseField name="dns_verification" type="object">DNS check details.</ResponseField>
  <ResponseField name="tracking_subdomain" type="string">Tracking subdomain prefix.</ResponseField>
</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  curl -X GET https://api.mailofly.com/api/v1/domains/dom_123 \
    -H "Authorization: Bearer mf_live_your_api_key"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 OK theme={null}
  {
    "data": {
      "id": "dom_123",
      "domain": "example.com",
      "ses_identity_status": "SUCCESS",
      "tracking_subdomain": "track"
    }
  }
  ```
</ResponseExample>


## Related topics

- [Retrieve Domain Claim](/api/domains/retrieve-domain-claim.md)
- [Retrieve Usage](/api/usage/retrieve-usage.md)
- [Retrieve Attachment](/api/emails/retrieve-attachment.md)
- [Retrieve Metrics](/api/emails/retrieve-metrics.md)
- [Retrieve Contact](/api/contacts/get-contact.md)
