Skip to content

A Luau library for interacting with Roblox's Open Cloud

License

Notifications You must be signed in to change notification settings

memorycode/cirrus

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Cirrus

Cirrus is a Luau (Lune) library for interacting with Roblox's Open Cloud.

Warning

The API is unstable and changing often.

Supported Endpoints

✅ full 🟡 some ❌ none

V2 Status         V1 Status
Creator Store Assets
Groups Data Stores
Instances Messaging
Inventory Place Publishing
Memory Stores 🟡
Places
Subscriptions
Universes
Users 🟡

Example

-- Create Cirrus client
local cirrus = Cirrus.new({
	apiKey = process.env.API_KEY,
	retries = 0,
})

local v1, v2 = cirrus.v1, cirrus.v2

-- Call v2 endpoints
local response = v2.user:generateThumbnail({ userId = 4000, size = "48x48", format = "PNG", shape = "ROUND" })
if response.ok then
	print(response.data)
else
	print(response.reason)
end 

-- Call v1 endpoints
v1.messaging:publish({
	message = "Hello",
	topic = "topic",
	universeId = 1,
})

About

A Luau library for interacting with Roblox's Open Cloud

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages