GET/api/v1/gamePace
Game pace
Pace-of-play metrics by team/league for a season.
On this page
Try it
https://statsapi.mlb.com/api/v1/gamePace?season=2026&sportId=1const res = await fetch('https://statsapi.mlb.com/api/v1/gamePace?season=2026&sportId=1')
const data = await res.json()curl -s 'https://statsapi.mlb.com/api/v1/gamePace?season=2026&sportId=1'
Reference
Query parameters
| Name | Type | Required | Description |
|---|---|---|---|
season | number | yes | Four-digit year. |
sportId | number | no | Sport id. |
Response
Type: GamePaceResponse
/** `GET /api/v1/gamePace` — partial. */
export interface GamePaceResponse extends WithCopyright {
teams?: unknown[]
leagues?: unknown[]
sports?: unknown[]
[key: string]: unknown
}Build with it
Live examples powered by this endpoint with real data. Inspiration — restyle and remix freely.
Pace-of-play card
Season-wide runs, hits, pitches, and innings per game.
Loading pace…
Example URLs
- Game pace (2026):
https://statsapi.mlb.com/api/v1/gamePace?season=2026&sportId=1