Partners

List partner links

Returns the authenticated user's standard referral URL and a page of their balance reward links, newest first. Expired and fully claimed rewards are included by default; deleted rewards are excluded. Filter status to narrow the promotion links. Users do not need to be enrolled to retrieve their links.

get/partners/links

Query parameters

statusstring[]

Filter promotion links by availability. Repeat the status parameter for multiple values.

firstinteger

Number of results to return from the start of the range.

afterstring

Return results after this cursor. Use page_info.end_cursor from the previous response to fetch the next page.

lastinteger

Number of results to return from the end of the range.

beforestring

Return results before this cursor. Use page_info.start_cursor from the previous response to fetch the previous page.

Response

partner links listed

base_referral_urlstring required

The partner's standard shareable referral URL.

Example response

{
  "base_referral_url": "https://whop.com/network/",
  "data": [
    {
      "expires_at": "2026-01-01T12:00:00.000Z",
      "id": "onbr_xxxxxxxxxxxxxx",
      "name": "reward-1",
      "partner_reward_amount": {
        "amount": "-2.50",
        "currency": "usd",
        "decimals": 2,
        "display_decimals": 2
      },
      "qualification_amount": {
        "amount": "-2.50",
        "currency": "usd",
        "decimals": 2,
        "display_decimals": 2
      },
      "qualification_income_source": "ad_spend",
      "referral_url": "https://whop.com/start/",
      "referred_business_reward_amount": {
        "amount": "-2.50",
        "currency": "usd",
        "decimals": 2,
        "display_decimals": 2
      },
      "reward_type": "balance_credit",
      "status": "expired"
    }
  ],
  "page_info": {
    "start_cursor": "WyJjdXJzb3IiLDFd"
  }
}

Changes