transfer
Was this helpful?
action.type: transfer action.destination: address action.amount: string action.asset: number (0) nonce: timestamp(ms) signature: EIP-712 object vaultAddress: (optional)
Exchange endpoint requests require a valid cryptographic signature and nonce. The signature is generated using the EIP-712 typed data standard. Refer to the HyperLiquid Python SDK for code examples.
Transaction hash confirming the transfer.
// Request
curl https://hyperliquid.blockpi.network/v1/exchange/your-api-key -X POST -H "Content-Type: application/json" --data '{"action":{"type":"transfer"},"nonce":1720000000000,"signature":{}}'
// Result
{"status":"ok","response":{"type":"transfer","data":{}}}Was this helpful?
Was this helpful?