> ## 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 PFP Watch

> Stop watching an X account for profile picture changes

Removes a PFP watch from the calling API key.

## Request

<ParamField body="username" type="string" required>
  The watched X username to remove (also accepted as a `?username=` query
  parameter).
</ParamField>

## Response

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

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

<ResponseExample>
  ```json theme={null}
  {
    "message": "PFP watch removed successfully"
  }
  ```
</ResponseExample>
