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"
}
Keywords
Remove Keywords
Remove keyword filters from your API key
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
string[]
required
Keywords to remove (case-insensitive).
Response
string[]
The remaining keyword list after removal.
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"
}