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

# List Followers

Return the list of users following a given profile.

## Behavior

* Pass `id` as a query parameter to list followers of that user. Omit it to list your own followers.
* Capped at 200 results, newest first.
* Suspended users are excluded.
* Each entry includes a `youFollow` flag indicating whether you follow that user back, and `isYou` for your own account.

## Examples

```bash theme={null}
curl -X GET "https://relay.snipp.gg/followers?id=123456789012345678" \
  -H "relay-key: YOUR_RELAY_KEY"
```

## Responses

```json theme={null}
{
  "users": [
    {
      "id": "987654321098765432",
      "username": "alice",
      "nickname": "Alice",
      "avatar": "https://i.snipp.gg/avatars/987654321098765432/abc.webp",
      "verified": false,
      "youFollow": true,
      "isYou": false
    }
  ]
}
```
