Skip to main content

execute

POST 

https://lite-api.jup.ag/recurring/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
  • recurringType is used to denote the type of recurring order, can be time or price
  • Refer to Recurring API doc for more information

Request

Bodyrequired

    requestIdstringrequired
    signedTransactionstringrequired

Responses

Transaction executed successfully

Schema
    errorstring | nullnullable
    orderstring | nullnullable

    Base-58 account which is the Recurring Order account

    signaturestringrequired
    statusstringrequired

    Possible values: [Success, Failed]

curl -L 'https://lite-api.jup.ag/recurring/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/recurring/v1
Body required
{
  "requestId": "string",
  "signedTransaction": "string"
}
ResponseClear

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