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

> List the X accounts your API key watches for profile picture changes

Returns the PFP watches registered for the calling API key.

## Response

<ResponseField name="data" type="object[]">
  Watches with `username`, `lastPfpUrl` (last observed avatar, `null` until
  first poll), and `createdAt`.
</ResponseField>

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

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

<ResponseExample>
  ```json theme={null}
  {
    "data": [
      {
        "username": "elonmusk",
        "lastPfpUrl": "https://pbs.twimg.com/profile_images/456/new_400x400.jpg",
        "createdAt": "2026-07-05T10:00:00.000Z"
      }
    ],
    "message": "PFP watches retrieved successfully"
  }
  ```
</ResponseExample>
