News Endpoints

HTTP Routing Table

Endpoints

GET /api/v1/news

Returns all news post IDs.

GET /api/v1/news/(int: post_id)

Returns a news post by ID.

GET /api/v1/news/(int: post_id)/source

Redirect to the original news post on umamusume.jp.

GET /api/v1/news/latest/(int: count)

Returns the latest n amount of posts. n <= 32

GET /api/v1/news/latest/(int: count)/(int: offset)

Returns the latest n amount of posts, offset by specified amount. n <= 32

GET /api/v1/news/latest/(int: count)/label/(int: label)

Returns the latest n amount of posts of a particular label. n <= 32

GET /api/v1/news/latest/(int: count)/(int: offset)/label/(int: label)

Returns the latest n amount of posts of a particular label, offset by specified amount. n <= 32

GET /api/v1/news/search/(query)

Returns sorted news articles which include one or more search terms from a URL-encoded string (separated by space). Query string length must be 200 characters or less.

GET /api/v1/news/context/(int: row_number)

Returns the row_number of the posts around given row_number.