Documentation Index
Fetch the complete documentation index at: https://docs.name.com/llms.txt
Use this file to discover all available pages before exploring further.
Webhooks
name.com can send HTTP POST requests to a URL you provide when specific domain or account events occur. Each request includes a JSON body with aneventName field that identifies the event type.
How it works
- Choose event types — Pick one or more
eventNamevalues (for exampledomain.transfer.status_change). - Create a subscription — Call Subscribe to Notification with your callback URL and the event names you want.
- Handle POST requests — Your server receives payloads when those events occur. Respond with
2xxto acknowledge delivery. - Verify signatures — Every request includes
X-NAMECOM-SIGNATURE. Validate it before processing. See HMAC signature verification.
Event names are stable API identifiers. Use the exact
eventName string from the payload reference page when subscribing and when routing in your handler (for example domain.transfer.status_change, not a display label).