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

# Add Keyword

> Add a custom keyword to boost relevant articles in the feed

## Headers

<ParamField header="X-API-Key" type="string" required>Your Rushed API key: `rsh_live_xxxxxxxxxxxx`</ParamField>

## Request Body

<ParamField body="keyword" type="string" required>
  Keyword to track (e.g., `petrobras`, `selic`, `bitcoin`)
</ParamField>

<ParamField body="weight" type="number">
  Weight (0–5, default 1.0). Higher weight = stronger boost in personalized feed.
</ParamField>

<RequestExample>
  ```bash cURL theme={null}
  curl -X POST https://worker.rushed.com.br/api/users/keywords \
    -H "X-API-Key: rsh_live_xxxxxxxxxxxx" \
    -H "Content-Type: application/json" \
    -d '{"keyword": "petrobras", "weight": 3.0}'
  ```
</RequestExample>

<ResponseExample>
  ```json 200 — Success theme={null}
  { "success": true, "data": { "keywords": ["petrobras", "selic"], "keywordWeights": { "petrobras": 3.0, "selic": 1.0 } } }
  ```
</ResponseExample>
