POST
/
execute
cURL
curl --request POST \
  --url https://api.relay.link/execute \
  --header 'Content-Type: application/json' \
  --data '{
  "executionKind": "rawCalls",
  "data": {
    "chainId": 123,
    "to": "<string>",
    "data": "<string>",
    "value": "<string>",
    "authorizationList": [
      {
        "chainId": 123,
        "address": "<string>",
        "nonce": 123,
        "yParity": 123,
        "r": "<string>",
        "s": "<string>"
      }
    ]
  },
  "executionOptions": {
    "referrer": "<string>",
    "subsidizeFees": true
  }
}'
{
  "message": "Transaction submitted",
  "requestId": "0xabc123..."
}

Body

application/json

Response

200
application/json

Transaction successfully queued for execution