# POST /api/v1/domain-transfers/actions/precheck

> Check whether a domain can be transferred in

- Group: domains
- Tier: W
- Required scope: write:domains
- Docs: https://api.inleed.com/reference/domains/precheck-domain-transfer

## Description

Returns `domain`, `tld`, `isSupported`, `alreadyHere`, `isFreeTransfer`, `registryAvailable`, `simulation` and a `note`. It starts nothing.

## Body

- `domain` — string (required)

## Request

```bash
curl -X POST "https://mcp.inleed.com/api/v1/domain-transfers/actions/precheck" \
  -H "Authorization: Bearer inl_live_…" \
  -H "Content-Type: application/json" \
  -d '{"domain":"example.se"}'
```

## Errors

- **401** No token was presented, or the token is revoked, expired or unknown. — codes: unauthorized, token_expired, token_revoked
- **403** The token lacks a required scope, or this account does not own the resource. — codes: insufficient_scope
- **422** Validation error — codes: validation_failed
- **429** The rate limit for this token is exhausted. See `Retry-After`. — codes: rate_limited
- **500** Something went wrong on our side. The failure is logged against `requestId`. — codes: internal_error

## Related

- GET /api/v1/domain-transfers — https://api.inleed.com/reference/domains/list-domain-transfers
- GET /api/v1/domain-transfers/{transfer} — https://api.inleed.com/reference/domains/get-domain-transfer
- POST /api/v1/domain-transfers — https://api.inleed.com/reference/domains/initiate-domain-transfer

