For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Logo
Join CommunityStart Trading
HomeOverviewDIME UtilityTradingRisk & LiquidationsParadex ChainEcosystemREST APIWebSocket APIAgentic AI HubRelease Notes
HomeOverviewDIME UtilityTradingRisk & LiquidationsParadex ChainEcosystemREST APIWebSocket APIAgentic AI HubRelease Notes
  • Getting Started
    • Overview
  • Local MCP
    • Quickstart guide
    • Prerequisites
    • ChatGPT Desktop
    • Claude Code CLI
    • Claude Desktop
    • Codex CLI
    • Cursor
    • Gemini CLI
    • VS Code (GitHub Copilot)
    • Windsurf
    • Troubleshooting
  • Remote MCP
    • Quickstart guide
    • Railway
    • Render
    • Fly.io
    • AWS Lambda
    • Docker / VPS
  • Paradex-hosted MCP
    • Quickstart guide
    • Claude.ai (Web)
    • ChatGPT Desktop
    • Smithery
    • Other Clients
    • CLI
    • Agentic Skills
  • MCP Reference
    • Resources
    • Tools
    • Prompts
Join CommunityStart Trading
On this page
  • Installation
  • Commands
  • Account Management
  • Transaction Signing & Submission
  • Emergency Operations
  • AI Agent Integration
  • Try It

CLI

Was this page helpful?
Edit this page
Previous

Agentic Skills

Next
Built with

Repository: github.com/tradeparadex/paradex-cli

A crypto DEX AI-native command-line interface for managing Paradex account contracts. Designed for both direct use and AI agent integration, the CLI provides full Paradex API access in a single binary.

What the CLI supports:

  • Fetch live and historical market data
  • Manage trading accounts and vaults
  • Place, monitor, and cancel orders
  • Track positions, balances, and funding payments

Gigavault operations are not currently supported through the CLI. The CLI focuses on account contract management — guardians, signers, transaction signing, and emergency operations.

Installation

$pip install paradex_cli

Commands

All commands accept an --env flag to specify the target environment (prod, testnet, or nightly).

Account Management

$# Print account information
$paradex_cli print-account-info ACCOUNT_ADDRESS --env ENVIRONMENT
$
$# Add a guardian
$paradex_cli add-guardian PUB_KEY --env ENVIRONMENT
$
$# Add a backup guardian
$paradex_cli add-guardian-backup PUB_KEY --env ENVIRONMENT
$
$# Change the account signer
$paradex_cli change-signer PUB_KEY --env ENVIRONMENT

Transaction Signing & Submission

$# Sign an invoke transaction
$paradex_cli sign-invoke-tx FILE_PATH --env ENVIRONMENT
$
$# Submit a signed invoke transaction
$paradex_cli submit-invoke-tx TX_FILE_PATH SIG_FILES --env ENVIRONMENT

Emergency Operations

$# Trigger guardian escape mechanism
$paradex_cli trigger-escape-guardian --env ENVIRONMENT

AI Agent Integration

AI assistants like Claude, Cursor, Codex, Copilot, Gemini, Goose, and OpenClaw can use CLI directly to interact with Paradex APIs — no separate server needed.

Try It

Paste these prompts directly into your AI assistant:

“Use paradex_cli to check my open positions and summarize my current exposure across all markets.”

“Fetch the last 24 hours of BTC and ETH funding rates using paradex_cli and tell me which position would have been more profitable to hold.”

“Using paradex_cli on testnet, open a small BTC long, check my account margin, and explain the risk.”