Skip to main content
POST
/
dbc
/
fee
/
create-tx
dbc-fee-create-tx
curl --request POST \
  --url https://lite-api.jup.ag/studio/v1/dbc/fee/create-tx \
  --header 'Content-Type: application/json' \
  --data '{
  "ownerWallet": "<string>",
  "poolAddress": "<string>",
  "maxQuoteAmount": 1
}'
{
  "transaction": "<string>"
}

Body

application/json
ownerWallet
string
required
  • Owner wallet public key
poolAddress
string
required
  • Dynamic Bonding Curve pool address
maxQuoteAmount
number
required
  • Maximum quote amount to claim
Required range: x >= 0

Response

Successful response

transaction
string
required

Base64-encoded transaction ready for signing

I