Skip to main content

execute

POST 

https://lite-api.jup.ag/trigger/v1/execute

Execute the signed transaction and get the execution status

note
  • Do note that the requestId is found in the response of /createOrder or /cancelOrder
  • Refer to Trigger API doc for more information

Request

Bodyrequired

    requestIdstringrequired

    Found in the response of /createOrder or /cancelOrder

    signedTransactionstringrequired

    The signed transaction to execute

Responses

Signature of the successful transaction

Schema
    codenumberrequired
    signaturestringrequired

    Signature of the successful transaction

    statusstringrequired

    Possible values: [Success, Failed]

curl -L 'https://lite-api.jup.ag/trigger/v1/execute' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-d '{
"requestId": "string",
"signedTransaction": "string"
}'
Request Collapse all
Base URL
https://lite-api.jup.ag/trigger/v1
Body required
{
  "requestId": "string",
  "signedTransaction": "string"
}
ResponseClear

Click the Send API Request button above and see the response here!