Skip to main content
POST
/
api
/
accounts
/
{accountId}
/
withdraw
curl --request POST \
  --url https://trade.predexon.com/api/accounts/{accountId}/withdraw \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "venue": "polymarket",
  "amount": "100.00",
  "destinationAddress": "0x9876543210abcdef9876543210abcdef98765432",
  "chain": "polygon"
}
'
{
  "transactionHash": "<string>",
  "amount": "<string>",
  "destinationAddress": "<string>",
  "chain": "<string>",
  "status": "<string>",
  "withdrawalId": "<string>"
}
For Polymarket, Predict, Opinion, and Limitless, the recommended withdrawal path is to drain to the deposit wallet, then withdraw via POST /transfers with to: "external" - that path delivers to any supported chain and surfaces the unified transfer envelope.Use this per-venue endpoint when you want fast same-chain delivery in the venue’s native stablecoin (no bridge fee), or for Hyperliquid, which uses a separate funding/withdraw path (Across for inbound, this endpoint for outbound).
Sends the venue’s stablecoin to destinationAddress on the destination chain. Cancel resting limit orders and redeem resolved positions before withdrawing - locked collateral and unredeemed winnings aren’t included in the withdrawable balance.

Per-venue summary

VenueDeliversChainNotes
PolymarketUSDC.epolygonNo fee.
PredictUSDT (BEP-20)bscNo fee.
OpinionUSDT (BEP-20)bscNo fee.
LimitlessUSDC (native)baseNo fee.
HyperliquidUSDC (native)arbitrum**10minimum.10 minimum.** 1 USDC fee deducted - recipient receives amount - 1. Settlement takes ~3-4 minutes.
The destinationAddress must match the chain’s address format. Wrong-chain withdrawals are unrecoverable.

Authorizations

x-api-key
string
header
required

Path Parameters

accountId
string
required

Body

application/json
venue
enum<string>
required

Source venue

Available options:
polymarket,
predict,
opinion,
limitless,
hyperliquid
amount
string
required

Amount to withdraw (e.g., "100.00"). Hyperliquid: $10 minimum; $1 USDC fee deducted before delivery.

destinationAddress
string
required

Recipient wallet address (must match chain format)

chain
enum<string>
required

Destination chain — polygon for Polymarket, bsc for Predict and Opinion, base for Limitless, arbitrum for Hyperliquid

Available options:
polygon,
bsc,
base,
arbitrum

Response

Withdrawal accepted. status is completed for synchronous venues; pending for Hyperliquid (settles ~3-4 minutes asynchronously).

transactionHash
string

Blockchain transaction hash for the withdrawal. Empty string for Hyperliquid withdrawals, which settle asynchronously (use withdrawalId to track).

amount
string

Amount withdrawn, in the venue's stablecoin — USDC.e (Polymarket), USDT (Predict / Opinion), USDC (Limitless), USDC (Hyperliquid; $1 fee deducted, recipient receives amount - 1).

destinationAddress
string

Recipient wallet address

chain
string

Destination chain

status
string

Withdrawal status: completed for synchronously-settled venues, pending for Hyperliquid (settlement takes ~3-4 minutes).

withdrawalId
string

Tracking ID for asynchronous withdrawals (Hyperliquid). Use it to correlate the request with on-chain settlement.