betsapi2
3.5
BetsAPI2 MCP Server provides comprehensive data and insights related to bet365 events, including scores, stats, and odds.
BetsAPI2 offers a robust platform for accessing a wide range of data related to sports betting. With a focus on bet365 events, users can explore current scores, detailed statistics, and various betting odds. The server supports both in-play and pre-match data, making it a versatile tool for sports enthusiasts and analysts alike.
Features
- Real-Time In-Play Data: Access live data on ongoing events, including scores, stats, and market information.
- Upcoming Events: Get information on future fixtures and events to plan your betting strategy.
- Pre-Match Odds: Retrieve odds for upcoming events to help make informed betting decisions.
- Event Results: View results of completed events to analyze performance and outcomes.
MCP Tools
- Bet365 Inplay Filter: Filter in-play events based on various criteria such as sport ID and league ID.
- Bet365 InPlay: Access detailed in-play data for current events.
- Bet365 InPlay Event: Retrieve comprehensive information on a specific in-play event, including scores, stats, and market details.
- Bet365 Upcoming Events: Get a list of upcoming events and fixtures.
- Bet365 PreMatch Odds: Access pre-match odds for various events.
- Bet365 Result: View results of past events to evaluate outcomes and performance.
Usage with Different Platforms
python
python
import requests
url = 'https://api.betsapi.com/v1/bet365/inplay'
params = {
'token': 'YOUR_API_TOKEN',
'sport_id': 1
}
response = requests.get(url, params=params)
data = response.json()
print(data)
nodejs
javascript
const axios = require('axios');
axios.get('https://api.betsapi.com/v1/bet365/inplay', {
params: {
token: 'YOUR_API_TOKEN',
sport_id: 1
}
})
.then(response => {
console.log(response.data);
})
.catch(error => {
console.error(error);
});