---
title: "Get creator earnings"
method: GET
path: "/evm/rh/creator-earnings"
tags: ["Robinhood Chain"]
---

# Get creator earnings

`GET /evm/rh/creator-earnings`

Get a single user's earnings view for a Bags V2 token on Robinhood Chain: claimer/partner status, claimable, claimed, and estimated pending amounts. Returns `404` for non-V2 tokens.

## Query parameters

- `tokenAddress` string, required
- `user` string, required

## Response `200`

Successfully retrieved creator earnings

- object
  - `success` boolean, required
  - `response` object
    - `token` string, required — EIP-55 checksummed token address.
    - `user` string, required — EIP-55 checksummed address of the queried user.
    - `isClaimer` boolean, required — Whether the user is a fee-share claimer on this token.
    - `userBps` number, required — The user's claimer share in basis points (0 if not a claimer).
    - `partner` string, nullable, required — EIP-55 checksummed partner address. Null when the token was launched without a partner.
    - `isPartner` boolean, required — Whether the user is the token's partner.
    - `claimableWei` string, required — Live claimable amount for the user (wei), as string to support bigint.
    - `claimedWei` string, required — Total already claimed by the user on this token (wei), as string to support bigint.
    - `pendingEstimateWei` string, required — The user's estimated share of the un-swept pending hook fees (wei), as string to support bigint.

## Other responses

- `400` — Bad request - Invalid token or user address
- `401` — Unauthorized - Invalid or missing API key
- `404` — Not found - The address is not a Bags V2 token
- `500` — Internal server error

---

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