gizmo-ds / vrchat_dart

An unofficial Dart library for VRChat API. (WIP)

Home Page:https://gizmooao.github.io/vrchat_dart/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

VRChat Dart Package

An unofficial Dart library for VRChat API.

test package Dart Version License

Disclaimer

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.

Usage

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'));
}

Thanks

Features and bugs

Please file feature requests and bugs at the issue tracker.

About

An unofficial Dart library for VRChat API. (WIP)

https://gizmooao.github.io/vrchat_dart/

License:MIT License


Languages

Language:Dart 100.0%