---
title: "Get most recent tips (tippee view)"
method: GET
path: "/v1/leaderboard/tippees/recent"
tags: ["leaderboard"]
---

# Get most recent tips (tippee view)

`GET /v1/leaderboard/tippees/recent`

Get the N most recent confirmed tips, showing tippee addresses (public, no auth).

- Returns individual tip events ordered by confirmation time (most recent first).
- Each entry shows the recipient's wallet address and tip details.
- Includes recipients without a Grove account (external wallets).

## Query parameters

- `token` string — Token symbol to filter by.
- `limit` integer — Number of recent tips to return.

## Response `200`

Successful Response

- RecentTipsResponse — Response model for recent tips list.
  - `token` string, required
  - `entries` RecentTipEntry[], required
    - `address` string, required
    - `account_id` string, nullable
    - `handle` string, nullable
    - `ens_name` string, nullable
    - `base_name` string, nullable
    - `avatar_url` string, nullable — Creator's selected avatar URL
    - `description` string, nullable — Creator's profile bio
    - `amount_usd` string, required
    - `amount_raw` string, required
    - `confirmed_at` string, nullable
    - `tx_hash` string, nullable
    - `destination` string, nullable
    - `tip_social_graph` string, nullable
    - `context` TipContextResponse — Social graph context attached to a tip (response model). This is the output version of TipContext - no validation needed since it's read from the database. All fields are optional as tips may have partial or no context.
      - `source_post_url` string, nullable
      - `sender_username` string, nullable
      - `sender_profile_url` string, nullable
      - `sender_platform` string, nullable
      - `sender_grove_handle` string, nullable
      - `recipient_username` string, nullable
      - `recipient_profile_url` string, nullable
      - `recipient_grove_handle` string, nullable
      - `campaign` string, nullable
      - `referrer` string, nullable
      - `custom_metadata` string, nullable
      - `is_discrete_giveaway_entry` boolean
      - `is_paid_message` boolean

## Other responses

- `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)
