---
title: "Get top tipped content for a profile"
method: GET
path: "/v1/profiles/{handle}/top-content"
tags: ["profiles"]
---

# Get top tipped content for a profile

`GET /v1/profiles/{handle}/top-content`

Returns the most-tipped content URLs for a public profile, ordered by total USD received.

## Path parameters

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

## Query parameters

- `enrich` boolean — Include content metadata (title, description, thumbnail).
- `limit` integer — Max items to return

## Response `200`

Successful Response

- ProfileTopContentResponse — Response model for GET /v1/profiles/{handle}/top-content.
  - `items` ProfileTopContentItem[] — Top content ordered by total USD
    - `url` string, required — URL of the tipped content
    - `platform` string, required — Detected platform (e.g., 'youtube', 'x', 'github')
    - `total_usd` string, required — Total USD tipped to this content
    - `tip_count` integer, required — Number of tips received
    - `unique_tippers` integer, required — Number of unique tippers
    - `last_tipped_at` string, nullable — Most recent tip timestamp (ISO 8601)
    - `content` ProfileTopContentContent — Enriched content metadata for a top content item.
      - `title` string, nullable — Content title (video title, post title, article headline).
      - `description` string, nullable — Content excerpt or description (truncated).
      - `image_url` string, nullable — Thumbnail or preview image URL (HTTPS only).
      - `author_name` string, nullable — Content author or channel name.
      - `published_at` string, nullable — Original publish date (ISO 8601).
    - `enrichment_status` string — Status of content enrichment: 'cached', 'pending', or 'unavailable'.

## 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/versions/f286b48a8105/schema)
