Skip to content

GET /api/execution/remoteAccount/{chainId}/{account}

GET
/api/execution/remoteAccount/{chainId}/{account}

get the remote account that will execute on behalf of {account}

Parameters

Path Parameters

chainId*
Typestring
Required
account*
Typestring
Required

Responses

Samples

cURL
curl -X GET http://localhost/api/execution/remoteAccount/{chainId}/{account}
JavaScript
fetch("http://localhost/api/execution/remoteAccount/{chainId}/{account}")
  .then(response => response.json())
  .then(data => console.log(data));
PHP
file_get_contents("http://localhost/api/execution/remoteAccount/{chainId}/{account}");
Python
import requests
response = requests.get("http://localhost/api/execution/remoteAccount/{chainId}/{account}")
print(response.json())
Powered by VitePress OpenAPI