Contents Menu Expand Light mode Dark mode Auto light/dark, in light mode Auto light/dark, in dark mode Skip to content
ossapi v5.2.1 documentation
ossapi v5.2.1 documentation
  • ossapi
  • Quickstart
    • Creating a Client
    • Grant Types
  • Advanced
    • Pagination
    • Expandable Models
    • Foreign Keys
    • Serializing Models
    • Async
    • Domains
  • Endpoints
    • Beatmap Packs
    • Beatmaps
    • Beatmapsets
    • Changelog
    • Chat
    • Comments
    • Events
    • Forums
    • Friends
    • Home
    • Matches
    • Me
    • News
    • Oauth
    • Rankings
    • Rooms
    • Scores
    • Seasonal Backgrounds
    • Spotlights
    • Tags
    • Users
    • Wiki
  • API Reference
Back to top
View this page

Matches¶

match(self, match_id, *, after_id=None, before_id=None, limit=None)¶

Get a match (eg https://osu.ppy.sh/community/matches/97947404).

Parameters:
  • match_id (int | Match) – The match to get.

  • after_id (int | None)

  • before_id (int | None)

  • limit (int | None)

Return type:

MatchResponse

Notes

Implements the Get Match endpoint.

matches(self)¶

Get current matches. If you want to get a specific match, see match().

Notes

Implements the Get Matches endpoint.

Return type:

Matches

Next
Me
Previous
Home
Made with Furo
On this page
  • Matches
    • match()
    • matches()