Free Download
Connect to live price feeds, resolve markets, and see real-time data. Free forever. Upgrade with a strategy module to trade automatically.
Python 3.10+ · Windows / macOS / Linux · ~15 KB ZIP
Download Free Bot ↓polymarket-free-bot/
├── .env.example # Your API credentials template
├── requirements.txt # Python dependencies
├── README.md # Quick start guide
├── main.py # Entry point — run with: python main.py
└── bot/
├── __init__.py
├── config.py # Settings loader from .env
├── client.py # Polymarket CLOB client wrapper
├── engine.py # Window management + loop
├── executor.py # Trade executor (sim + live)
├── feeds.py # Price feeds (Binance, CLOB, RTDS)
├── markets.py # Market resolution via Gamma API
├── orders.py # Order placement (limit, market, FAK)
└── engines/ # ← YOUR STRATEGY GOES HERE
Download the ZIP above and extract it anywhere on your machine.
Copy .env.example to .env. Add your Polymarket API key, secret, passphrase, and wallet private key.
pip install -r requirements.txt
python main.py --cycles 1
The bot will connect to price feeds and log market data to your console.
The free framework connects and shows prices. The strategy module adds the brain — spread capture logic that trades for you.
Get the Strategy Module →