1.0.5 • Published 4 years ago

retroachievmentsapijs v1.0.5

Weekly downloads
-
License
ISC
Repository
-
Last release
4 years ago

RetroAchievements Javascript API module

This is a module to access RetroAchievements API easly with javascript. The API has 0 dependencies only vanilla javascript.

Usage

Import module into your file:

const raApi = require('retroachievmentsapijs');

Authentication to the RetroAchievements site must be done so you should first create an account so you can user your user and api key.

If you already have an account or have done the above step you need to authenticate:

const user = 'username'; // get your username from retroachivements.org
const apiKey = 'yourApiKey'; // get your api key from retroachivements.org profile page

const raApi = new RaApi(user,apiKey); // initialize the module

Once the module has been initialzied you can easly use it by calling the require api call function. Each function is a promise function and it can be called like:

// Get top ten users from [RetroAchievements](retroachievements.org)
raApi.getTopTenUsers().then((users)=>{
    console.log(users);
})

Avaiabale api endpoints

Below is a table representing each method available, example of return response and what it does.

requestresponsedescription
GetTopTenUsers() { '1': 'MaxMilyin', '2': '413059', '3': '1299618' },{ '1': 'HippopotamusRex', '2': '354656', '3': '1229216' }, { '1': 'BerserkerBR', '2': '311072', '3': '950623' }, { '1': 'sigma62', '2': '277591', '3': '654364' }, { '1': 'Wendigo', '2': '266284', '3': '1022807' }, { '1': 'Veritasu', '2': '225254', '3': '499926' }, { '1': 'oakley', '2': '218141', '3': '474658' }, { '1': 'SeredaVadim', '2': '204732', '3': '631451' }, { '1': 'FabricioPrie', '2': '204336', '3': '473600' }, { '1': 'GOGZero', '2': '201411', '3': '434551' } `| returns top ten users
1.0.5

4 years ago

1.0.4

4 years ago

1.0.3

4 years ago

1.0.2

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago