Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
獲取系列市場數據
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": [...] } ]