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

# Verify Domain Claim

> Verify DNS TXT challenge to complete domain transfer.

Trigger DNS lookup to verify that the challenge TXT token exists. Once verified, the domain will be claimed into your workspace.

### Path Parameters

<ParamField path="id" type="string" required>
  The claim ID.
</ParamField>

### Response

<ResponseField name="data" type="object">
  <ResponseField name="id" type="string">The claim ID.</ResponseField>
  <ResponseField name="status" type="string">Verification outcome (`verified`).</ResponseField>
  <ResponseField name="claimed" type="boolean">True if transfer succeeded.</ResponseField>
  <ResponseField name="verifiedAt" type="string">ISO 8601 timestamp.</ResponseField>
</ResponseField>

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

<ResponseExample>
  ```json 200 OK theme={null}
  {
    "data": {
      "id": "clm_123456",
      "status": "verified",
      "claimed": true,
      "verifiedAt": "2026-09-11T14:05:00Z"
    }
  }
  ```
</ResponseExample>


## Related topics

- [Claim domain](/domains/claim-domain.md)
- [Claim Domain](/api/domains/claim-domain.md)
- [Retrieve Domain Claim](/api/domains/retrieve-domain-claim.md)
- [Verify Domain](/api/domains/verify-domain.md)
- [MCP Tools Reference](/mcp-server/tools.md)
