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
      }
    }
  ]
}

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[]