---
title: "Get your referral earnings summary"
method: GET
path: "/v1/referrals/earnings"
tags: ["referrals"]
---

# Get your referral earnings summary

`GET /v1/referrals/earnings`

Get the authenticated user's referral earnings summary.

Returns earnings from commissions on tips received by your referees.
Referrers earn a percentage of tips to their referees, deducted from Grove's fee.

**Time windows:**
- `24h`: Last 24 hours
- `7d`: Last 7 days
- `30d`: Last 30 days
- `all`: All time (default)

**Response fields:**
- `total_earned_usd`: Total earnings in the time window
- `total_paid_usd`: Earnings that have been paid out
- `earnings_count`: Number of earning events
- `referrer_type`: Your referrer type ('user' or 'bdr')
- `reward_percentage`: Your current reward percentage
- `duration_days`: How long you earn on each referee

Authentication: `Authorization: Bearer <CLIENT_JWT>`

## Query parameters

- `window` '24h' | '7d' | '30d' | 'all' — Time window for earnings summary

## Headers

- `authorization` string, nullable — Bearer JWT issued by Grove that identifies the account.

## Response `200`

Successful Response

- ReferralEarningsResponse — Response model for GET /v1/referrals/earnings. Returns the authenticated referrer's earnings summary with optional time window. Earnings are from commissions on tips received by referees.
  - `total_earned_usd` string, required — Total referral earnings in USD for the time window
  - `total_paid_usd` string, required — Total earnings that have been paid out in the time window
  - `earnings_count` integer, required — Number of referral earning events in the time window
  - `referrer_type` string, nullable — Referrer type: 'user' or 'bdr' (None if not a referrer)
  - `reward_percentage` string, nullable — Current reward percentage (e.g., '0.02' for 2%)
  - `duration_days` integer, nullable — Reward window in days from referee signup

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