pinnacle-odds
3.5
The Pinnacle Odds MCP Server provides a RESTful service for real-time and historical sports odds, scores, and results.
The Pinnacle Odds MCP Server is a comprehensive platform offering real-time and historical sports data. It provides pre-match and live odds, scores, and results for a wide range of sports, including Soccer, Tennis, Basketball, and more. The server ensures data is updated without delay, providing users with the most current information. It supports various features such as retrieving lists of sports, markets, and archived events, as well as accessing special markets and odds history. The server operates in GMT (0) time zone and offers tools to facilitate data access and betting status checks.
Features
- Real-time Odds: Access pre-match and live odds for various sports.
- Historical Data: Retrieve historical odds, scores, and results.
- Wide Sports Coverage: Supported sports include Soccer, Tennis, Basketball, Hockey, American Football, MMA, Baseball, Handball, Volleyball, and Cricket.
- No Data Delay: Unlike some services, data is provided without delay, ensuring timely insights.
MCP Tools
- List of Periods: Get a comprehensive list of periods available for betting.
- Event Details: Access detailed information and historical odds for specific events.
- List of Sports: Retrieve a list of all supported sports.
- List of Special Markets: Obtain special betting markets.
- List of Archive Events: View archived events with pagination support.
Usage with Different Platforms
mcp
python
import requests
url = 'https://api.pinnacle.com/v1/odds'
headers = {
'Authorization': 'Bearer YOUR_ACCESS_TOKEN',
'Content-Type': 'application/json'
}
response = requests.get(url, headers=headers)
if response.status_code == 200:
data = response.json()
print(data)
else:
print('Failed to retrieve data')