-
Notifications
You must be signed in to change notification settings - Fork 0
Home
Lucas E. da Silva edited this page Apr 13, 2026
·
4 revisions
Welcome to the official documentation. To ensure the plugin works correctly, please follow the setup instructions below.
Before calling any API functions, you must provide your game credentials in the Godot Project Settings:
Go to Project Settings and fill in your Game ID and Private Key in these fields:
Application > Game Jolt API > game_idApplication > Game Jolt API > private_key
The functions are divided into specialized modules. Click on a module to see the available functions:
- Data Store Module - Cloud storage for user and global data.
- Time Module - Get the current server time from Game Jolt.
- Scores Module - Manage leaderboards and high scores.
- Sessions Module - Handle user sessions and online status.
- Trophies Module - Unlock and manage game achievements.
- Users Module - Authenticate users and fetch profile data.
- Advanced Module - Plugin Core
Since this plugin is asynchronous, remember to always use the await keyword:
await GameJoltAPI.user_login("Username", "Token")