還沒有帳號?點擊這裡註冊 Polymarket 並完成入金,才能用錢包私鑰為訂單籤名、實際成交。
端點
請求示例
響應示例
常見系列
- 體育賽季(NFL、NBA 等)
- 選舉周期
- 加密貨幣價格預測
- 公司財報季
獲取系列市場數據
GET https://gamma-api.polymarket.com/series
import requests
response = requests.get('https://gamma-api.polymarket.com/series')
series_list = response.json()
for series in series_list:
print(f"系列: {series['title']}")
print(f"市場數: {series['market_count']}")
[
{
"id": "123",
"slug": "nfl-2024-season",
"title": "NFL 2024賽季",
"description": "2024 NFL 賽季所有市場",
"market_count": 150,
"tags": ["sports", "nfl"],
"markets": [...]
}
]