Skip to main content
DELETE
/
keywords
curl -X DELETE https://scrape.st/keywords \
  -H "x-api-key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "keywords": ["airdrop"]
  }'
{
  "data": ["pepe"],
  "message": "Keywords removed successfully"
}
Removes keywords from the calling API key. When the last keyword is removed, the key goes back to receiving all events unfiltered.

Request

keywords
string[]
required
Keywords to remove (case-insensitive).

Response

data
string[]
The remaining keyword list after removal.
message
string
Status message describing the result
curl -X DELETE https://scrape.st/keywords \
  -H "x-api-key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "keywords": ["airdrop"]
  }'
{
  "data": ["pepe"],
  "message": "Keywords removed successfully"
}