MLB Stats API Docs

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

GET/api/v1/people/changes

People changes

People records updated since a timestamp.

On this page

Try it

Query
https://statsapi.mlb.com/api/v1/people/changes?updatedSince=2026-06-28T00%3A00%3A00Z
const res = await fetch('https://statsapi.mlb.com/api/v1/people/changes?updatedSince=2026-06-28T00%3A00%3A00Z')
const data = await res.json()
curl -s 'https://statsapi.mlb.com/api/v1/people/changes?updatedSince=2026-06-28T00%3A00%3A00Z'

Reference

Query parameters

NameTypeRequiredDescription
updatedSincestringyes

ISO 8601 timestamp, e.g. 2026-06-28T00:00:00Z.

Response

Type: PeopleResponse

/**
 * `GET /api/v1/people/{personId}`, `/people/search`, and `/people/changes` all
 * return a `people` array.
 */
export interface PeopleResponse extends WithCopyright {
	people: Person[]
}

Build with it

Live examples powered by this endpoint with real data. Inspiration — restyle and remix freely.

Recently updated players

A change-feed turned into a grid of player records updated in the last couple days.

Loading changes…

Example URLs

  • People changed since a timestamp: https://statsapi.mlb.com/api/v1/people/changes?updatedSince=2026-06-28T00%3A00%3A00Z