POST
/
domain-snapshot
Request a domain snapshot (async)
curl --request POST \
  --url https://api.watchmantower.com/public/anon/domain-snapshot \
  --header 'Content-Type: application/json' \
  --data '{
  "domain": "watchmantower.com"
}'
{
  "success": true,
  "message": "Domain snapshot requested",
  "data": {
    "snapshotId": "698c26794f35dc691678121",
    "status": "pending",
    "pollAfterMs": 1500,
    "isExisting": false,
    "next": {
      "method": "GET",
      "url": "/public/anon/domain-snapshot/698c26794f35dc691678121"
    }
  },
  "code": 202
}
Create a new domain snapshot request.

Body

application/json
domain
string
required
Example:

"watchmantower.com"

Response

Snapshot request accepted (pending)

success
boolean
required
Example:

true

data
object
required
message
string
Example:

"Domain snapshot requested"

code
number
Example:

202