---
title: "Get profile supporters"
method: GET
path: "/v1/profiles/{handle}/supporters"
tags: ["profiles"]
---

# Get profile supporters

`GET /v1/profiles/{handle}/supporters`

Get the supporters (tippers) for a public profile, ordered by total amount.

## Path parameters

- `handle` string, required — User handle (case-insensitive)

## Query parameters

- `limit` integer — Max supporters to return

## Response `200`

Successful Response

- ProfileSupportersResponse — Response model for GET /v1/profiles/{handle}/supporters.
  - `supporters` ProfileSupporter[] — Supporters ordered by total USD
    - `handle` string, nullable — Supporter's Grove handle (if they have one)
    - `address` string, required — Supporter's wallet address
    - `amount_usd` string, required — Total USD tipped to this profile
    - `tip_count` integer, required — Number of tips sent to this profile
    - `last_tipped_at` string, required — Most recent tip timestamp (ISO 8601)
  - `total_count` integer — Total unique supporters

## Other responses

- `404` — Profile not found or private
- `422` — Validation Error

---

[API](https://skmtc.net/grove/apis/grove-api.md) · [All operations](https://skmtc.net/grove/apis/grove-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/grove/grove-api/revisions/f286b48a8105/schema)
