Start with composite tools
These tools are the best default entry points because they handle multi-step work for the client:| Tool | Description |
|---|---|
parsec.market.find_market | Search for markets by keyword, parsec_id, or exchange-native ID |
parsec.market.get_market_snapshot | Get metadata, orderbook, and recent trades together |
parsec.trade.preview_order | Estimate execution with account context before placing a live order |
parsec.account.get_trading_setup_status | Check whether the account is ready to trade |
parsec.stream.open_market_feed | Open a real-time market feed in one step |
Market data
Use these for discovery and read-only research:parsec.market.list_exchangesparsec.market.list_marketsparsec.market.get_orderbookparsec.market.get_execution_priceparsec.market.get_priceparsec.market.list_tradesparsec.market.list_events
Trading
Use these once you are ready to place or manage live orders:parsec.trade.create_orderparsec.trade.cancel_orderparsec.trade.list_ordersparsec.trade.get_orderparsec.trade.list_positionsparsec.trade.list_fillsparsec.trade.get_balance
Real-time streaming
Use these when the client needs explicit control over the WebSocket session:parsec.stream.connectparsec.stream.authparsec.stream.subscribeparsec.stream.unsubscribeparsec.stream.resyncparsec.stream.readparsec.stream.close
parsec.stream.open_market_feed is the easier starting point.
Account and wallet
parsec.account.pingparsec.account.get_usageparsec.account.get_ws_usageparsec.account.get_user_activityparsec.account.onboardparsec.wallet.get_stateparsec.wallet.export_key
Builder tools
Use these if you are building for end-users instead of trading only for yourself:parsec.builder.create_userparsec.builder.list_usersparsec.builder.get_userparsec.builder.update_userparsec.builder.delete_userparsec.builder.onboard_userparsec.builder.get_poolparsec.builder.get_escrow_config
Polymarket CTF tools
These are advanced conditional-token operations. Most users should stay on the regular trading tools unless they specifically need token splits, merges, or redemption:parsec.ctf.splitparsec.ctf.mergeparsec.ctf.redeem