skills$openclaw/polymarket
dannyshmueli8.5k

by dannyshmueli

polymarket – OpenClaw Skill

polymarket is an OpenClaw Skills integration for coding workflows. Query Polymarket prediction markets. Use for questions about prediction markets, betting odds, market prices, event probabilities, or when user asks about Polymarket data.

8.5k stars4.0k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding

Skill Snapshot

namepolymarket
descriptionQuery Polymarket prediction markets. Use for questions about prediction markets, betting odds, market prices, event probabilities, or when user asks about Polymarket data. OpenClaw Skills integration.
ownerdannyshmueli
repositorydannyshmueli/pm-odds
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @dannyshmueli/pm-odds
last updatedFeb 7, 2026

Maintainer

dannyshmueli

dannyshmueli

Maintains polymarket in the OpenClaw Skills directory.

View GitHub profile
File Explorer
4 files
.
scripts
polymarket.py
5.4 KB
_meta.json
280 B
SKILL.md
1.1 KB
SKILL.md

name: polymarket description: Query Polymarket prediction markets. Use for questions about prediction markets, betting odds, market prices, event probabilities, or when user asks about Polymarket data.

Polymarket

Query prediction market data from Polymarket's public API (no auth required).

Quick Start

# Top markets by 24h volume
python3 scripts/polymarket.py --top

# Search markets
python3 scripts/polymarket.py --search "trump"

# Get specific market by slug
python3 scripts/polymarket.py --slug "will-trump-win-the-2024-election"

# List events (grouped markets)
python3 scripts/polymarket.py --events

Script Location

skills/polymarket/scripts/polymarket.py

API Endpoints

The script uses gamma-api.polymarket.com:

  • /markets - Individual markets with prices, volumes
  • /events - Event groups containing related markets

Output Format

Markets show: question, Yes/No prices (as percentages), 24h volume, total volume.

Interpreting Prices

  • outcomePrices are 0-1 representing probability
  • Price of 0.65 for "Yes" = market thinks 65% chance of Yes
  • Higher volume = more liquid, more reliable signal
README.md

No README available.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

FAQ

How do I install polymarket?

Run openclaw add @dannyshmueli/pm-odds in your terminal. This installs polymarket into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/dannyshmueli/pm-odds. Review commits and README documentation before installing.