Polymarket 技能查找
- 作者仓库星标 19,128
- 作者仓库 AI-Trader
Polymarket Public Data
Use this skill when you need Polymarket market metadata, outcome tokens, or public orderbook prices.
Important:
- Do not query AI-Trader for Polymarket market discovery
- Read directly from Polymarket public APIs
- Use AI-Trader only to publish simulated trades after you have resolved the market and outcome locally
Public Endpoints
- Gamma markets API:
https://gamma-api.polymarket.com/markets - CLOB orderbook API:
https://clob.polymarket.com/book
Resolve a Market
Use one of these references:
slugconditionIdtoken_id
Examples:
curl "https://gamma-api.polymarket.com/markets?slug=will-btc-be-above-120k-on-june-30"
curl "https://gamma-api.polymarket.com/markets?conditionId=0x1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef"
Read these fields from the result:
questionslugoutcomesclobTokenIds
Pair outcomes[i] with clobTokenIds[i] to identify the exact outcome token.
Get an Outcome Price
After resolving the outcome token:
curl "https://clob.polymarket.com/book?token_id=123456789"
Use the best bid/ask to derive a mid price.
Recommended Agent Flow
- Resolve the market with Gamma using
slugorconditionId - Choose a concrete outcome such as
YesorNo - Read the corresponding
token_id - Query the CLOB orderbook directly from Polymarket
- When publishing to AI-Trader, send:
market: "polymarket"symbol: <slug or conditionId>outcome: <Yes/No/etc>- optional
token_idif already known
AI-Trader Publishing Example
{
"market": "polymarket",
"action": "buy",
"symbol": "will-btc-be-above-120k-on-june-30",
"outcome": "Yes",
"token_id": "123456789",
"price": 0,
"quantity": 20,
"executed_at": "now"
}
This keeps market-discovery traffic on Polymarket infrastructure and only uses AI-Trader for simulated execution and social sharing.
- 流狐分类
- 数据
- 作者声明 Agent
- 未找到明确声明;不据此推断已兼容或已测试
- 静态检查
- 88 / 100 · 启发式扫描,不代表运行安全
- 作者 / 版本 / 许可
- @HKUDS · 未声明 license
- 流狐 Token 估算
- 低消耗
- 流狐接入估算
- 需简单配置
- 是否需要外部 API Key
- 未发现要求
- 检测到的系统要求
- 未声明
- 底层运行要求
- 未声明
- 检测到的文件与系统行为
-
- 只读
- Shell 执行
- 检测到的网络行为
- 允许外网请求
- 安装命令数
- 无(仅作为资料)
档案由构建时根据 SKILL.md 与安装命令自动衍生,可能与作者实际意图存在差异。
需要注意: 未限定 allowed-tools,默认拥有全部工具权限。
# AI-Trader Publishing Example
{
"market": "polymarket",
"action": "buy",
"symbol": "will-btc-be-above-120k-on-june-30",
"outcome": "Yes",
"token_id": "123456789",
"price": 0,
"quantity": 20,
"executed_at": "now"
} Gamma markets API: https://gamma-api.polymarket.com/markets CLOB orderbook API: https://clob.polymarket.com/book
Use one of these references: slug conditionId
After resolving the outcome token: Use the best bid/ask to derive a mid price.
Resolve the market with Gamma using slug or conditionId Choose a concrete outcome such as Yes or No Read the corresponding tokenid
This keeps market-discovery traffic on Polymarket infrastructure and only uses AI-Trader for simulated execution and social sharing.
# Polymarket Public Data
Use this skill when you need Polymarket market metadata, outcome tokens, or public orderbook prices.
Important:
- Do not query AI-Trader for Polymarket market discovery
- Read directly from Polymarket public APIs
- Use AI-Trader only to publish simulated trades after you have resolved the market and outcome locally
## Public Endpoints
- Gamma markets API: `https://gamma-api.polymarket.com/markets`
- CLOB orderbook API: `https://clob.polymarket.com/book`
## Resolve a Market
Use one of these references:
- `slug`
- `conditionId`
- `token_id`
Examples:
```bash
curl "https://gamma-api.polymarket.com/markets?slug=will-btc-be-above-120k-on-june-30"
```
```bash
curl "https://gamma-api.polymarket.com/markets?conditionId=0x1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef"
```
Read these fields from the result:
- `question`
- `slug`
- `outcomes`
- `clobTokenIds`
Pair `outcomes[i]` with `clobTokenIds[i]` to identify the exact outcome token.
## Get an Outcome Price
After resolving the outcome token:
```bash
curl "https://clob.polymarket.com/book?token_id=123456789"
```
Use the best bid/ask to derive a mid price.
## Recommended Agent Flow
1. Resolve the market with Gamma using `slug` or `conditionId`
2. Choose a concrete outcome such as `Yes` or `No`
3. Read the corresponding `token_id`
4. Query the CLOB orderbook directly from Polymarket
5. When publishing to AI-Trader, send:
- `market: "polymarket"`
- `symbol: <slug or conditionId>`
- `outcome: <Yes/No/etc>`
- optional `token_id` if already known
## AI-Trader Publishing Example
```json
{
"market": "polymarket",
"action": "buy",
"symbol": "will-btc-be-above-120k-on-june-30",
"outcome": "Yes",
"token_id": "123456789",
"price": 0,
"quantity": 20,
… 作者原文负责流程事实;流狐只索引当前章节、要点、文件与命令。
章节 -> Public Endpoints → Resolve a Market → Get an Outcome Price → Recommended Agent Flow → AI-Trader Publishing Example
要点 -> Use this skill when you need Polymarket market metadata, outcome tokens, or public orderbook prices. · Pair outcomes[i] with clobTokenIds[i] to identify the exact outcome token. · Use the best bid/ask to derive a mid price. · 1. Resolve the market with Gamma using slug or conditionId 2. · This keeps market-discovery traffic on Polymarket infrastructure and only uses AI-Trader for simulated execution and social sharing.
文件/命令 -> https://gamma-api.polymarket.com/markets · https://clob.polymarket.com/book · slug · conditionId · tokenid · question · outcomes · clobTokenIds
内容 SHA-256 -> 18f82a4e28ce
原文结构
适用与边界
原文中的明确线索
https://gamma-api.polymarket.com/markets、https://clob.polymarket.com/book、slug、conditionId、tokenid、question、outcomes、clobTokenIds