api-nba

api-nba

3.9

The `api-nba` MCP server provides comprehensive access to various NBA-related data and statistics.

The api-nba MCP server offers developers the ability to integrate live and historical NBA data into their applications. It provides detailed information on games, players, teams, standings, and more. The server is designed with a robust architecture to ensure high service levels, low latency, and ease of use. With a variety of endpoints and customizable parameters, it allows for extensive access to basketball data, making it suitable for sports applications, data analysis, and exploring NBA statistics.

Features

  • Comprehensive NBA Data: Access detailed information on all NBA stats including data on games, live scores, standings, team statistics, player statistics, seasons, and leagues.
  • Live Updates: Fetch live game data and current standings to keep your applications up-to-date with ongoing NBA games.
  • Historical Data: Retrieve historical data from past seasons for in-depth analytics and comparison.
  • Detailed Player and Team Information: Gain insights into player and team performances with detailed statistics.
  • Flexible Querying: Utilize various parameters to customize data requests according to your needs, including filters for seasons, leagues, teams, and more.

Usage with Different Platforms

python

python
import requests

url = 'https://api-nba.com/games'
params = {
    'season': '2023',
    'team': 'Lakers'
}
response = requests.get(url, params=params)
data = response.json()
print(data)

javascript

javascript
fetch('https://api-nba.com/games?season=2023&team=Lakers')
  .then(response => response.json())
  .then(data => console.log(data));