createTeamBattlesClient(apiKey) factory that wires bearer-token authentication, so you can make your first authenticated call in a few lines.
Supported languages
Stable languages are fully supported. Preview languages depend on Kiota runtime packages that are still pre-release, so their generated output may lag behind.Install and first call
Every SDK follows the same shape: install the package, create a client with your API key, then call an endpoint. For example, in TypeScript:Authentication
All SDKs authenticate with an API key sent as a bearer token:matches.user_matches: read scope.
Errors return a JSON body of the form { "error": "<machine_code>", "details": "<optional message>" }. Treat the error machine code - not the details message - as the stable programmatic contract.