Skip to main content
POST
/
execute
execute
curl --request POST \
  --url https://lite-api.jup.ag/trigger/v1/execute \
  --header 'Content-Type: application/json' \
  --data '{
  "requestId": "<string>",
  "signedTransaction": "<string>"
}'
{
  "signature": "38CtpugRBobyj1JMkHj9umQyj1D8q6bs1jcMRcw7Fiyp4BXv4uh4bD4TyJs6fsqYCDDfQpeRewA7HjLA1Eprc8uR\n",
  "status": "Success"
}
NOTE
  • Do note that the requestId is found in the response of /createOrder or /cancelOrder

Body

application/json
requestId
string
required

Found in the response of /createOrder or /cancelOrder

signedTransaction
string
required

The signed transaction to execute

Response

Signature of the successful transaction

code
number
required
signature
string
required

Signature of the successful transaction

status
enum<string>
required
Available options:
Success,
Failed
I