Skip to main content
DELETE
/
v1
/
social
/
search
/
{searchId}
curl -X DELETE "https://api.hooked.ai/v1/social/search/clx123abc" \
  -H "x-api-key: your_api_key_here"
{
  "success": true,
  "message": "Search deleted successfully",
  "data": {
    "id": "clx123abc",
    "deleted": true
  }
}

Overview

This endpoint permanently deletes a saved search and all its associated video data.

Path Parameters

searchId
string
required
The internal search ID to delete

Response

success
boolean
Indicates if the request was successful
message
string
Status message
data
object
curl -X DELETE "https://api.hooked.ai/v1/social/search/clx123abc" \
  -H "x-api-key: your_api_key_here"
{
  "success": true,
  "message": "Search deleted successfully",
  "data": {
    "id": "clx123abc",
    "deleted": true
  }
}
This action is permanent and cannot be undone. All associated video data will be deleted.
You can only delete searches that belong to your team. Attempting to delete another team’s search will result in a 403 Forbidden error.

Authorizations

x-api-key
string
header
required

Path Parameters

searchId
string
required

Response

200

Search deleted successfully