Skip to main content
POST
/
token-launch
/
claim-txs
/
v3
Get claim transactions (v3)
curl --request POST \
  --url https://public-api-v2.bags.fm/api/v1/token-launch/claim-txs/v3 \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "feeClaimer": "<string>",
  "tokenMint": "<string>"
}
'
{
  "success": true,
  "response": [
    {
      "tx": "<string>",
      "blockhash": {
        "blockhash": "<string>",
        "lastValidBlockHeight": 123
      }
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.bags.fm/llms.txt

Use this file to discover all available pages before exploring further.

The simplified v3 claim endpoint automatically handles all fee claiming logic. Just provide the fee claimer wallet and token mint — the API determines the position type and builds the appropriate transactions. For a complete walkthrough, see the Claim Fees guide.

Authorizations

x-api-key
string
header
required

API key authentication. Provide your API key as the header value.

Body

application/json
feeClaimer
string
required

Public key of the fee claimer wallet

tokenMint
string
required

Token mint public key

Response

Successfully generated claim transactions

success
boolean
required
Example:

true

response
object[]