MLB Stats API Docs

Type to search endpoints by name, path, or keyword.

GET/api/v1/gamePace

Game pace

Pace-of-play metrics by team/league for a season.

On this page

Try it

Query
https://statsapi.mlb.com/api/v1/gamePace?season=2026&sportId=1
const 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

NameTypeRequiredDescription
seasonnumberyes

Four-digit year.

sportIdnumberno

Sport id. 1 is MLB.

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