BloonsPy is a Python wrapper for the Ninja Kiwi Open Data API, that makes you write more readable code and handles rate limiting automatically. It also renames cryptic variable names so you can know what you're doing while coding.
Python 3.10 or higher is required
python3 -m pip install bloonspy
from bloonspy import Client
boss_event = Client.bosses()[0].standard()
boss_standard_top_3 = boss_event.leaderboard()[:3]
for player in boss_standard_top_3:
print(f"{player.name} - {player.score}")