Skip to content

Delete Monitor - API Reference

Deletes a monitor. This stops the API from checking for new events and halts all future charges for this monitor.

Deletion is immediate and permanent — a deleted monitor cannot be restored, and it no longer appears in List active monitors. To stop a monitor temporarily, remove its webhook URL or let it pause rather than deleting it.

Any charges already incurred are settled at the moment of deletion. For a search monitor this includes executions it ran since the last hourly settlement, so a final charge may appear on your account just after you delete it.

DELETE https://api.socialdata.tools/monitors/{monitor_id}

Headers

Authorization string required

Authorization Bearer header containing your SocialData API key

Example: Bearer YOUR_API_KEY

Path Parameters

monitor_id string required

Target monitor ID

Example: 01jeg76qa91b095gttamsbwa6q

Code Examples

Terminal window
curl -X DELETE "https://api.socialdata.tools/monitors/01jeg76qa91b095gttamsbwa6q" \
-H 'Authorization: Bearer YOUR_API_KEY' \
-H 'Accept: application/json'

Example Responses

{
"status": "success"
}

Response Codes

  • 200 OK - request succeeded
  • 404 Not Found - requested monitor does not exist

Before you integrate