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

# Remove Ticker from Watchlist

> Remove a stock ticker from the user's watchlist

## Headers

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

## Path Parameters

<ParamField path="ticker" type="string" required>Ticker symbol (e.g., PETR4)</ParamField>

<RequestExample>
  ```bash cURL theme={null}
  curl -X DELETE https://worker.rushed.com.br/api/users/watchlist/tickers/PETR4 \
    -H "X-API-Key: rsh_live_xxxxxxxxxxxx"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 — Success theme={null}
  { "success": true, "data": { "watchlistTickers": ["VALE3"] } }
  ```
</ResponseExample>
