Introduction

This is the documentation for rlapi, a library for Python assisting in creating applications using Rocket League API.

Prerequisites

rlapi works with Python 3.7 or higher. Support for earlier versions of Python is not provided.

Installing

You can get the library directly from PyPI.

python3.7 -m pip install -U rlapi

If you are using Windows, then the following should be used instead.

py -3.7 -m pip install -U rlapi

Usage example

You can easily create a client using the class rlapi.Client. Here’s simple example showing how you can get player stats with this library:

import asyncio

import rlapi


async def main():
    client = rlapi.Client(client_id="client id", client_secret="client secret")
    players = await client.get_player("kuxir97", None)


asyncio.run(main())