> ## Documentation Index
> Fetch the complete documentation index at: https://polymarketcn.com/llms.txt
> Use this file to discover all available pages before exploring further.

# 系列

> 獲取系列市場數據

<Callout type="success">
  還沒有帳號？[點擊這裡註冊 Polymarket](https://polymarket.com/?r=2026VIP) 並完成入金，才能用錢包私鑰為訂單籤名、實際成交。
</Callout>

<Warning>
  **法律合規提醒**：在使用 Polymarket 服務或 API 前，請確認您所在地區的法律規定。Polymarket 目前不支援比利時、法國、新加坡、泰國、中國大陸等地區，政策可能隨時變化。
</Warning>

系列端點返回相關市場的集合，如體育賽季、選舉周期等。

## 端點

```
GET https://gamma-api.polymarket.com/series
```

## 請求示例

```python theme={null}
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']}")
```

## 響應示例

```json theme={null}
[
  {
    "id": "123",
    "slug": "nfl-2024-season",
    "title": "NFL 2024賽季",
    "description": "2024 NFL 賽季所有市場",
    "market_count": 150,
    "tags": ["sports", "nfl"],
    "markets": [...]
  }
]
```

## 常見系列

* 體育賽季（NFL、NBA 等）
* 選舉周期
* 加密貨幣價格預測
* 公司財報季
