Skip to main content
DELETE
/
v1
/
searches
/
{id}
curl -X DELETE "https://api.trigify.io/v1/searches/search_abc123xyz" \
  -H "x-api-key: YOUR_API_KEY"
{
  "message": "<string>",
  "success": true,
  "data": {
    "id": "<string>",
    "deleted": true
  }
}
Delete a social listening search and stop all future monitoring.

Overview

The Delete Search endpoint permanently removes a search. The search will stop running and no new results will be collected. Historical results may still be accessible for a limited time.

Authentication

Requires a valid API key with the searches:write permission.

Key Features

  • Permanent Deletion: Search is removed and cannot be recovered
  • Stops Monitoring: No further results will be collected
  • No Credit Cost: Deletion is free
curl -X DELETE "https://api.trigify.io/v1/searches/search_abc123xyz" \
  -H "x-api-key: YOUR_API_KEY"

Path Parameters

ParameterTypeDescription
idstringThe unique search ID

Response

{
  "message": "Search deleted successfully",
  "success": true,
  "data": {
    "id": "search_abc123xyz",
    "deleted": true
  }
}

Credit Usage

This endpoint is free and does not consume credits.

Important Notes

  • Deletion is permanent and cannot be undone
  • If you want to temporarily stop a search, use the Update Search endpoint to set status: "paused" instead
  • Historical results from the search may be retained for a limited period

Headers

x-api-key
string
required

Path Parameters

id
string
required

Search ID

Example:

"search_abc123xyz"

Response

200 - application/json

Search deleted successfully

message
string
required
success
boolean
required
data
object
required