from compass_api_sdk import CompassAPIwith CompassAPI( api_key_auth="<YOUR_API_KEY_HERE>",) as compass_api: res = compass_api.traditional_investing.traditional_investing_execute(action={ "key": "<value>", "key1": "<value>", "key2": "<value>", }, nonce=31516, signature="<value>") # Handle response print(res)
{ "status": "<string>", "response": {}}
Traditional Investing
Execute signed action
Submit a signed Hyperliquid action for execution.
Accepts the signature from any prepare endpoint (market_order, limit_order,
cancel_order, withdraw, approve_builder_fee) and POSTs it to the Hyperliquid
exchange API.
POST
/
v2
/
traditional_investing
/
execute
Python (SDK)
from compass_api_sdk import CompassAPIwith CompassAPI( api_key_auth="<YOUR_API_KEY_HERE>",) as compass_api: res = compass_api.traditional_investing.traditional_investing_execute(action={ "key": "<value>", "key1": "<value>", "key2": "<value>", }, nonce=31516, signature="<value>") # Handle response print(res)