> ## Documentation Index
> Fetch the complete documentation index at: https://docs.scrape.st/llms.txt
> Use this file to discover all available pages before exploring further.

# Remove Keywords

> Remove keyword filters from your API key

Removes keywords from the calling API key. When the last keyword is removed,
the key goes back to receiving all events unfiltered.

## Request

<ParamField body="keywords" type="string[]" required>
  Keywords to remove (case-insensitive).
</ParamField>

## Response

<ResponseField name="data" type="string[]">
  The remaining keyword list after removal.
</ResponseField>

<ResponseField name="message" type="string">
  Status message describing the result
</ResponseField>

<RequestExample>
  ```bash theme={null}
  curl -X DELETE https://scrape.st/keywords \
    -H "x-api-key: YOUR_API_KEY" \
    -H "Content-Type: application/json" \
    -d '{
      "keywords": ["airdrop"]
    }'
  ```
</RequestExample>

<ResponseExample>
  ```json theme={null}
  {
    "data": ["pepe"],
    "message": "Keywords removed successfully"
  }
  ```
</ResponseExample>
