- authentication
- Secret API key as a bearer token
- billing
- Free.
The monitor plus results: the verdict of every address from the last run, keyed by the address as it was saved, or null until the first run has finished. A monitor that belongs to another account answers 404.
Parameters
| name | in | type | description |
|---|---|---|---|
| monitorIdrequired | path | integer | The monitor's id from the list endpoint. |
Example request
curl https://spaw.co/api/v1/email/monitors/41 \ -H "Authorization: Bearer sk_live_…"
Responses
200The monitor.
{
"success": true,
"data": {
"monitor": {
"id": 41,
"name": "Newsletter list",
"cadence": "weekly",
"email_count": 2,
"next_run_at": "2026-09-10T08:00:00+00:00",
"last_run_at": "2026-09-03T08:00:12+00:00",
"last_summary": {
"deliverable": 1,
"risky": 1,
"undeliverable": 0,
"decayed": 0,
"credits_used": 2,
"stopped_reason": null
},
"created_at": "2026-08-27T08:00:00+00:00",
"results": {
"[email protected]": "deliverable",
"[email protected]": "risky"
}
}
}
}401The key is missing, malformed, or revoked.
{
"success": false,
"error": {
"code": "UNAUTHENTICATED",
"message": "Provide a valid API key as a bearer token.",
"request_id": "req_01m1kgdm4xngzmbmff68g94w0c"
}
}404No such record on this account.
{
"message": "Not Found"
}429Over 5 requests per second for the key. Retry after the limit resets.
{
"success": false,
"error": {
"code": "RATE_LIMITED",
"message": "Too many requests. Retry after the limit resets.",
"request_id": "req_01m1kgdm4xngzmbmff68g94w0c"
}
}Error codes
Failures answer { success: false, error: { code, message, request_id } }. Each code has its own page.