NBA game schedule today, scores and standings rank.
by @goog
Get today's NBA game schedule, live scores, final results, and current season standings. Use when the user asks about NBA games today, live NBA scores, game...
clawhub install nbaπ About This Skill
name: nba description: Get today's NBA game schedule, live scores, final results, and current season standings. Use when the user asks about NBA games today, live NBA scores, game results, NBA standings, team records, or anything about the current NBA season. Triggers on phrases like "NBA schedule", "NBA scores today", "NBA standings", "what NBA games are on", "NBA results", "who won last night in NBA".
NBA Skill
Fetches live NBA data via the NBA CDN API (scoreboard) and StatMuse HTML (standings).
Data Sources
| Data | Source |
|------|--------|
| Today's games & live scores | https://cdn.nba.com/static/json/liveData/scoreboard/todaysScoreboard_00.json |
| Standings (East/West) | StatMuse HTML tables β https://www.statmuse.com/nba/ask/nba-2025-26-eastern-conference-standings |
| Full schedule | https://www.nba.com/schedule |
Quick Usage
Run the script from the skill directory:
Today's schedule + live scores
python scripts/nba_data.py scoreboardCurrent standings
python scripts/nba_data.py standingsBoth (default)
python scripts/nba_data.py all
On Linux/macOS:
python3 scripts/nba_data.py all
Script: scripts/nba_data.py
scoreboard β Fetches today's games from NBA CDN. Shows status (upcoming/live/final), scores, quarter/clock, and game leaders (pts/reb/ast).standings β Scrapes StatMuse for East + West conference tables: rank, team, W, L, pct, home record.all β Both commands combined.No API key required. Pure stdlib (urllib, json, re).
Workflow
1. Run python scripts/nba_data.py all (set PYTHONIOENCODING=utf-8 on Windows first).
2. Run python -c "from datetime import datetime; print(datetime.now().astimezone().tzinfo) to get timezone.
3. Parse and present output to the user in clean readable format, change UTC time to local timezone.
4. For deeper stats (player stats, box scores, specific game details), direct user to:
- https://www.nba.com/game/ for box scores
- https://www.statmuse.com/nba for historical stats queries
Notes
2025-26) may need updating at season start.https://www.statmuse.com/nba/ask/nba-YYYY-YY-[eastern|western]-conference-standingsπ Tips & Best Practices
2025-26) may need updating at season start.https://www.statmuse.com/nba/ask/nba-YYYY-YY-[eastern|western]-conference-standings