Sample Success Responses
Domain Registration List Monitor API sample response
If a request succeeds, it will return a status code in the 200 and a JSON. A part of the example response is given below.
{
"result_count": 3,
"page": 1,
"page_size": 100,
"results": [
{
"filters": {
"should": [
{
"name": "domain.whois.registrant.email",
"value": "[email protected]",
"type": "eq"
}
],
"must": null,
"must_not": null
},
"monitor_id": "000eaf14-f140-4cc1-867e-5e7c483c5000",
"monitor_name": "registrant email monitor",
"status": "active",
"tags": [
"covid"
],
"created_at": "2021-10-25T07:50:52Z",
"updated_at": "2021-10-25T07:50:52Z",
"monitoring_start_date": "2021-10-25T07:50:51Z",
"deleted": false,
"deleted_at": null
},
{
"filters": {
"should": [
{
"name": "domain.name.keywords",
"value": "covid19",
"type": "eq"
}
],
"must": null,
"must_not": null
},
"monitor_id": "000d05e7-49c5-4e3f-bc67-ae2bde3b1000",
"monitor_name": "domain keyword monitor",
"status": "active",
"tags": [
"covid"
],
"created_at": "2021-10-25T07:45:27Z",
"updated_at": "2021-10-25T07:45:27Z",
"monitoring_start_date": "2021-10-25T07:45:25Z",
"deleted": false,
"deleted_at": null
},
{
"filters": {
"should": [
{
"name": "domain.name.keywords",
"value": "covid",
"type": "eq"
}
],
"must": [
{
"name": "domain.name",
"value": [
"your_domain_name"
],
"type": "contains_all"
}
],
"must_not": null
},
"monitor_id": "000ff87b-dc6c-4d2b-9e3c-b7820e7cc000",
"monitor_name": "domain_monitor",
"status": "active",
"tags": [
"domain_monitor"
],
"created_at": "2021-10-05T15:06:34Z",
"updated_at": "2021-10-22T08:42:02Z",
"monitoring_start_date": "2021-10-22T08:42:00Z",
"deleted": false,
"deleted_at": null
}
]
}
Only Undeleted Monitor IDs
All monitor parameters that have not yet been deleted can be viewed with a query parameter setting.
curl --request GET \
--url 'https://api.deepinfo.com/v1/monitoring/registration/monitors?deleted=false&page=1&page_size=100' \
--header 'Accept: application/json' \
Updated about 3 years ago