All Projects → vrchatapi → vrchatapi-javascript

vrchatapi / vrchatapi-javascript

Licence: MIT license
🟡 VRChat API Library for JavaScript and TypeScript

Programming Languages

typescript
32286 projects

Projects that are alternatives of or similar to vrchatapi-javascript

vrchatapi-csharp
🟣VRChat API Library for C#
Stars: ✭ 27 (-15.62%)
Mutual labels:  vrchat, vrchatapi
Reflex-Shader-2
Reflex Shader 2
Stars: ✭ 35 (+9.38%)
Mutual labels:  vrchat
UdonVideoplayer
VRChat Videoplayer for Quest and PC
Stars: ✭ 20 (-37.5%)
Mutual labels:  vrchat
cats-blender-plugin
😺 A tool designed to shorten steps needed to import and optimize models into VRChat. Compatible models are: MMD, XNALara, Mixamo, DAZ/Poser, Blender Rigify, Sims 2, Motion Builder, 3DS Max and potentially more
Stars: ✭ 1,674 (+5131.25%)
Mutual labels:  vrchat
UdonRabbit.Analyzer
DEPRECATED (U#1.0 not supported) .NET Roslyn Analyzer for VRChat Udon and UdonSharp.
Stars: ✭ 44 (+37.5%)
Mutual labels:  vrchat
shaders
Okano's Unity Shaders. Big mishmash of reworked, original, and mixed shaders.
Stars: ✭ 35 (+9.38%)
Mutual labels:  vrchat
VRC-Ender-3
A functional 3d printer for VRChat worlds
Stars: ✭ 44 (+37.5%)
Mutual labels:  vrchat
VRCFriendCheck
VRChatのフレンドのオンライン状況の確認、オンライン通知ができるブラウザ拡張機能
Stars: ✭ 16 (-50%)
Mutual labels:  vrchat
UNet
Network system for VRChat UDON
Stars: ✭ 19 (-40.62%)
Mutual labels:  vrchat
VRC-Cancerspace
Cancerous screenspace shader for VRChat. Please use responsibly. :^)
Stars: ✭ 55 (+71.88%)
Mutual labels:  vrchat
MUI
Modification of the Unity builtin UI shader that fixes the edges of quads being visible on text characters
Stars: ✭ 17 (-46.87%)
Mutual labels:  vrchat
Raymarched-GPU-Particles-with-Screenspace-Physics
Using Grab Passes for VRChat
Stars: ✭ 44 (+37.5%)
Mutual labels:  vrchat
YOLOv4-Tiny-in-UnityCG-HLSL
A modern object detector inside fragment shaders
Stars: ✭ 38 (+18.75%)
Mutual labels:  vrchat
VRCFaceTracking
VRChat OSC App to allow AV3 Avatars to interact with Vive SRanipal Eye and Lip Tracking SDK
Stars: ✭ 176 (+450%)
Mutual labels:  vrchat
ml mods
MelonLoader mods for VRChat
Stars: ✭ 40 (+25%)
Mutual labels:  vrchat
USharpVideo
A basic video player made for VRChat using Udon and UdonSharp
Stars: ✭ 238 (+643.75%)
Mutual labels:  vrchat
DreadScripts
Variety of Scripts and Tools for improving Unity workflow, usually focused on VRChat.
Stars: ✭ 38 (+18.75%)
Mutual labels:  vrchat
Toony-standard
A toon shader with standard elements for vrchat
Stars: ✭ 24 (-25%)
Mutual labels:  vrchat
BloodborneSDK
VRChat's latest modded/modified SDK, support for SDK2, SDK3 - Avatar, and SDK3 - World.
Stars: ✭ 15 (-53.12%)
Mutual labels:  vrchat
ACLS-Shader
Unity HLSL VR ready "Toony/PBR hybrid" avatar shader for VRCHAT and similar platforms. Built with game industry standard toony appearances and adaptive to vrchat render constraints and reactive to common incorrect user generated map lighting.
Stars: ✭ 20 (-37.5%)
Mutual labels:  vrchat

VRChat API Library for JavaScript/TypeScript

A JavaScript/TypeScript/NodeJS client to interact with the unofficial VRChat API. Supports all REST calls specified in the API specification.

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.

As stated, this documentation was not created with the help of the official VRChat team. Therefore this documentation is not an official documentation of the VRChat API and may not be always up to date with the latest versions. If you find that a page or endpoint is not longer valid please create an issue and tell us so we can fix it.

Getting Started

First add the package to to your project:

npm install vrchat

Below is an example on how to login to the API and fetch your own user information.

// Step 1. We begin with creating a Configuration, which contains the username and password for authentication.
const vrchat = require("vrchat");
const configuration = new vrchat.Configuration({
    username: "username",
    password: "password"
});

// Step 2. VRChat consists of several API's (WorldsApi, UsersApi, FilesApi, NotificationsApi, FriendsApi, etc...)
// Here we instantiate the Authentication API which is required for logging in.
const AuthenticationApi = new vrchat.AuthenticationApi(configuration);

// Step 3. Calling getCurrentUser on Authentication API logs you in if the user isn't already logged in.
AuthenticationApi.getCurrentUser().then(resp => {
    const currentUser = resp.data;
    console.log(`Logged in as: ${currentUser.displayName}`);
});

See example.js for more example usage on getting started.

Contributing

Contributions are welcome, but do not add features that should be handled by the OpenAPI specification.

Join the Discord server to get in touch with us.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].