Skip to content

Relatio OpenCloudTyped SDK for Roblox Open Cloud

A modern, fully-typed TypeScript SDK for the Roblox Open Cloud API

Quick Start ​

bash
npm install @relatiohq/opencloud
typescript
import { OpenCloud } from "@relatiohq/opencloud";

const client = new OpenCloud({
  apiKey: "your-api-key"
});

const user = await client.users.get("123456789");
console.log(user.displayName);