Get Bundle Result

The endpoint is used to get the status/description of transactions that were sent as a bundle.

When submitting as a bundle, if there is any error in your transaction or bundle, it oftentimes will not show up on the chain. In this case, it is important to use this endpoint to deduce the current status of your transaction. Any call made with POST ./api/v2/submit-batch or POST ./api/v2/submit will return an option uuid parameter if it is specified to submit with a bundle. This UUID will be used in this endpoint.

Request

GET ./api/v2/bundle-result/{uuid}

Parameters:

ParameterTypeDescription

uuid

string

A unique ID received when you submit a transaction uses either frontRunningProtection or useBundle.

Request example:

curl --header "Authorization: $AUTH_HEADER" \
'https://ny.solana.dex.blxrbdn.com/api/v2/bundle-result/c47c2adeac91a18678c9064c2472e736e69f1cff1ac7ba78a945c5526c458f9b

Response:

Fields:

FieldsTypeDescription

uuid

string

unique ID of your bundle of transactions, received from any of the submit endpoints

bundleResult

string

status of the bundle with description if there is an error

Response Example:

{
  "uuid":"8b2171ed6de3ebec2ce08c1fc880257fa56eafa6354bf3ec1a4434a1da838d45", 
  "bundleResult":"bundle_id:\"8b2171ed6de3ebec2ce08c1fc880257fa56eafa6354bf3ec1a4434a1da838d45\" accepted:{slot:250631199 validator_identity:\"CXPeim1wQMkcTvEHx9QdhgKREYYJD8bnaCCqPRwJ1to1\"}", 
  "timestamp":null
}

Last updated