Emote integration server side with our API
Assign an Emote to a user
Our SDK API is organized around REST providing a simple and secure way to retrieve an animation from a video. Our API accepts form-encoded request bodies, returns JSON-encoded responses, and uses standard HTTP response codes, authentication, and verbs.
Requests must include the following key in headers:
x-api-key: <your_game_api_key>
The OAuth 2.0 method of authentication consists in generating an authentication token. This can then be used as tokenized temporary credentials.
The implicit flow is a browser only flow. It can be used in web applications that need access tokens and cannot make use of a backend. Ask for a client ID if you need to implement this flow.
get
https://auth.kinetix.tech
/login
Authorization endpoint
post
https://sdk-api.kinetix.tech
/v1/virtual-world/users
Create a new user for your virtual world
post
https://sdk-api.kinetix.tech
/v1/users/{userId}/emotes/{emoteID}
Assign an Emote to a user
get
https://sdk-api.kinetix.tech
/v1/users/{userId}/emotes
Fetch a user's Emotes
get
https://sdk-api.kinetix.tech
/v1/virtual-world/emotes
List the Emotes currently assigned to your virtual world
Last modified 14h ago