Watch My Domains SED - API Guide
These API endpoints are specifically for developers who want to integrate their own apps or websites with data from Watch My Domains SED. They’re completely separate from the registrar API support built into the app.
So if you're a regular user or administrator of the software, you can safely ignore these, they’re not meant for day-to-day use or configuration.
Comprehensive API support
One of the most important additions to Watch My Domains SED is the comprehensive API support that makes it easy to build your own user interface and not use the default interface at all.
You can also use the API to integrate data from the domain database into your sites and applications.
API URL
Requests to the Watch My Domains SED API are sent to the following URL:
https://<install path>/api.php
- The API is stateful.
- The requests should be sent over https (secure socket) for security.
- The API responses are always in JSON format.
- The API call was successful if response contains
status:ok.
API URL Structure
Most calls to the API URL will have the following structure
https://<install path>/api.php?c=command&t=target&oper=operation
For example, the following is used to get the user list.
?c=admin&t=users&oper=list
PHP and Session IDs
You may also want to have a look at this blog post.
