Get Claimed Fees [beta]

Returns claimed fee history for a specific v4 token and fee recipient address. Data is sourced from indexed on-chain ClaimedRewards events since February 2nd, 2026 (until we run a complete backfill).

Endpoint

GET /api/get-claimed-fees/{tokenAddress}/{feeRecipient}

Authentication

Requires a valid partner API key passed via the x-api-key header.

Header
Required
Description

x-api-key

Yes

Partner API key

Path Parameters

Parameter
Type
Required
Description

tokenAddress

string

Yes

The Clanker token contract address

feeRecipient

string

Yes

The fee recipient (fee owner) address

Both addresses must be valid Ethereum addresses (checksummed or lowercase).

Query Parameters

Parameter
Type
Required
Default
Description

chainId

number

No

8453

Chain ID (defaults to Base mainnet)

limit

number

No

50

Number of tx hashes to return (max 100)

offset

number

No

0

Number of records to skip for pagination

Supported Chains

Chain
Chain ID

Base

8453

Base Sepolia

84532

Arbitrum

42161

Monad Testnet

10143

Response

200 OK

Field
Type
Description

tokenAddress

string

Checksummed token contract address

feeRecipient

string

Checksummed fee recipient address

chainId

number

Chain ID used for the query

totalClaimed

string

Total claimed amount in wei (sum of all claims)

claimCount

number

Total number of claim events (across all pages)

txHashes

string[]

Transaction hashes for the current page, most recent first

pagination

object

Pagination metadata

Pagination Object

Field
Type
Description

limit

number

Number of results per page

offset

number

Current offset

hasMore

boolean

Whether more results exist beyond this page

400 Bad Request

401 Unauthorized

500 Internal Server Error

Caching

Responses are cached for 60 seconds with a 120-second stale-while-revalidate window.

Example

Last updated