Skip to main content
POST
/
execute
execute
curl --request POST \
  --url https://lite-api.jup.ag/ultra/v1/execute \
  --header 'Content-Type: application/json' \
  --data '{
  "signedTransaction": "<string>",
  "requestId": "<string>"
}'
{
  "status": "Success",
  "signature": "<string>",
  "slot": "<string>",
  "error": "<string>",
  "code": 123,
  "totalInputAmount": "<string>",
  "totalOutputAmount": "<string>",
  "inputAmountResult": "<string>",
  "outputAmountResult": "<string>",
  "swapEvents": [
    {
      "inputMint": "<string>",
      "inputAmount": "<string>",
      "outputMint": "<string>",
      "outputAmount": "<string>"
    }
  ]
}
NOTE
  • The requestId is found in the response of /order

Body

application/json
signedTransaction
string
required
  • The signed transaction to execute
requestId
string
required
  • Found in response of /order

Response

Successful response

status
enum<string>
required
Available options:
Success,
Failed
code
number
required
signature
string
slot
string
error
string
totalInputAmount
string
totalOutputAmount
string
inputAmountResult
string
outputAmountResult
string
swapEvents
object[]
I