An unofficial Dart library for VRChat API.
This is the official response of the VRChat Team (from Tupper more specifically) on the usage of the VRChat API.
Use of the API using applications other than the approved methods (website, VRChat application) are not officially supported. You may use the API for your own application, but keep these guidelines in mind:
- We do not provide documentation or support for the API.
- Do not make queries to the API more than once per 60 seconds.
- Abuse of the API may result in account termination.
- Access to API endpoints may break at any given time, with no warning.
A simple usage example:
import 'package:vrchat_dart/vrchat_dart.dart' as vrchat;
void main() {
var systemAPI = vrchat.SystemAPI();
systemAPI.time().then((value) => print('ServerTime: ${value.toLocal()}'));
systemAPI.visits().then((value) => print('Visits: $value'));
}
Please file feature requests and bugs at the issue tracker.