Skip to content

elde-n/roblox-api

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

98 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

roblox-api

Roblox web API bindings written in rust.

Breaking changes

In this library breaking changes occur often as it's in alpha. Roblox also sometimes changes apis although that's rare.

Example

use roblox_api::{api::users, client::Client};

#[tokio::main]
async fn main() {
	let mut client = Client::default();

	let user = users::v1::user_details(&mut client, 1).await.unwrap();
	println!("Name: {}", user.name);
}

Contributing

Before writing any pull-requests please write an issue first.

About

Roblox web api bindings for rust

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages