> ## 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.

# List Keywords

> Retrieve the keyword filters attached to your API key

Returns the keywords registered for the calling API key. When an API key has
keywords, event deliveries (webhook, Telegram, WebSocket, SSE) are filtered to
posts whose text matches at least one keyword — see
[Keyword Filtering](/scrapest/advanced-features#keyword-filtering).

## Response

<ResponseField name="data" type="string[]">
  The keywords registered for this API key (lowercased).
</ResponseField>

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

<RequestExample>
  ```bash theme={null}
  curl https://scrape.st/keywords \
    -H "x-api-key: YOUR_API_KEY"
  ```
</RequestExample>

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