Hyperliquid Withdraw
Withdraw USDC from Hyperliquid to an Arbitrum address. Funds are bridged back to Arbitrum as USDC. Processing may take several minutes. Ideal for: taking profits, moving funds off-exchange, and portfolio management.
Catalog action Hyperliquid wallet
Withdraw USDC from Hyperliquid to an Arbitrum address. Funds are bridged back to Arbitrum as USDC. Processing may take several minutes. Ideal for: taking profits, moving funds off-exchange, and portfolio management.
This action can require a wallet connector, gas, token movement, or an external side effect. Test with simulation or a controlled amount before using it in a live workflow.
At a Glance
| Field | Value |
|---|---|
| Action ID | hyperliquid-withdraw |
| Category | Hyperliquid |
| Connector | wallet |
| Requires gas | No |
| Funds movement | None declared |
| Tags | hyperliquid, withdraw, usdc, bridge |
Payload Schema
| Field | Type | Required | Description |
|---|---|---|---|
amount | string | Yes | Amount to withdraw in USD (e.g., '100.50') |
destination | string | Yes | Destination Arbitrum address for the withdrawal |
Result Schema
| Field | Type | Required | Description |
|---|---|---|---|
status | string | Yes | Withdrawal outcome |
amount | string | No | Withdrawal amount in USD |
destination | string | No | Destination address |
Examples
json{ "type": "hyperliquid-withdraw", "payload": { "amount": "1000000", "destination": "example-destination" }, "children": [], "connector": { "type": "wallet", "id": "conn_wallet" }}
bashcurl -X POST "https://api.b3os.org/v1/actions/hyperliquid-withdraw/test" \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "inputs": { "amount": "1000000", "destination": "example-destination" }}'
Payload fields can use workflow expressions such as {{$trigger.body.amount}}, {{$nodes.fetch.result.price}}, and {{$props.asset}} when the value should come from a trigger, prior node, or reusable workflow prop.
