Skip to main content
POST
/
dbc-pool
/
submit
dbc-pool-submit
curl --request POST \
  --url https://api.jup.ag/studio/v1/dbc-pool/submit \
  --header 'Content-Type: multipart/form-data' \
  --header 'x-api-key: <api-key>' \
  --form 'transaction=<string>' \
  --form 'owner=<string>' \
  --form 'content=<string>' \
  --form headerImage='@example-file'
{
  "success": true,
  "data": {
    "mint": "<string>",
    "configKey": "<string>"
  }
}

Authorizations

x-api-key
string
header
required

Get API key via https://portal.jup.ag

Body

multipart/form-data
transaction
string
required
  • Base64-encoded signed transaction
owner
string
required
  • Owner wallet public key
content
string
  • Optional content description displayed on Studio dedicated token page
  • This is stored off-chain for our frontend to display
  • This is NOT the on-chain token metadata
  • The on-chain token metadata is done by making a PUT request to the presigned URL
headerImage
file
  • Optional header image file displayed on Studio token page
  • This is stored off-chain for our frontend to display
  • This is NOT the on-chain token metadata
  • The on-chain token metadata is done by making a PUT request to the presigned URL

Response

Successful response

success
boolean
data
object