Quick Start

Two API calls cover most integrations.

Look up a handle

curl "https://claimr.app/api/wallet/lookup?handle=elonmusk"

Returns the Claimr address, current balance, and Twitter profile:

{
  "handle": "elonmusk",
  "twitterId": "44196397",
  "address": "7HbxHbUMZRVCkh2f8YSvXkzLygwjL1vgHEFpHQP8qyEn",
  "balance": {
    "pda": "5.2000",
    "vault": "3.1000",
    "total": "8.3000"
  },
  "canWithdraw": true
}

Use address as the creator when launching tokens on Pump.fun.

Trigger collection

Fees from trading accumulate in a Pump.fun vault until collected:

This requires the numeric Twitter ID, not the handle. The lookup response includes it.

Withdrawals

Withdrawals are handled through claimr.apparrow-up-right. The account owner logs in with Twitter and specifies a destination wallet. No integration required on your end.

Last updated