> ## 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 Claim

> Retrieve details and status of an ongoing domain claim.

Inspect the status and challenge DNS record of an active domain claim.

### Path Parameters

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

### Response

<ResponseField name="data" type="object">
  <ResponseField name="id" type="string">The claim ID.</ResponseField>
  <ResponseField name="status" type="string">Current status (`pending_verification`, `verified`, `expired`).</ResponseField>

  <ResponseField name="txtRecord" type="object">
    <ResponseField name="type" type="string">DNS record type (`TXT`).</ResponseField>
    <ResponseField name="name" type="string">DNS host name.</ResponseField>
    <ResponseField name="value" type="string">TXT token value.</ResponseField>
  </ResponseField>
</ResponseField>

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

<ResponseExample>
  ```json 200 OK theme={null}
  {
    "data": {
      "id": "clm_123456",
      "status": "pending_verification",
      "txtRecord": {
        "type": "TXT",
        "name": "_mailofly-challenge.example.com",
        "value": "mailofly-verify=8f7e9a2b3c4d5e6f"
      }
    }
  }
  ```
</ResponseExample>


## Related topics

- [Claim Domain](/api/domains/claim-domain.md)
- [Claim domain](/domains/claim-domain.md)
- [Verify Domain Claim](/api/domains/verify-domain-claim.md)
- [Retrieve Domain](/api/domains/retrieve-domain.md)
- [Retrieve Usage](/api/usage/retrieve-usage.md)
