glowgaia / grabbit
A SaloonPHP-based SDK for Gaia Online's GSI API
v4.0.4
2026-04-25 00:25 UTC
Requires
- illuminate/collections: ^13.4
- illuminate/support: ^13.4
- saloonphp/saloon: ^4.0
- symfony/property-access: ^8.0
- symfony/serializer: ^8.0
Requires (Dev)
- phpstan/phpstan: ^2.1
- phpstan/phpstan-strict-rules: ^2.0
- phpunit/phpunit: ^13.1.6
- tightenco/duster: ^3.4
README
Grabbit is a Saloon-based SDK for Gaia Online. The goal is to provide developers with a more consistent and reliable way of interacting with Gaia's APIs, especially their Game System Interface (GSI).
use GlowGaia\Grabbit\Common\Connectors\GSIConnector; use GlowGaia\Grabbit\User\DTOs\UserInfo; use GlowGaia\Grabbit\User\Requests\GetInfo; $connector = new GSIConnector(); $response = $connector->user()->getInfo('Lanzer'); /** @var UserInfo $user */ $user = $response->dto(); $user->gaia_id; // 3
Structure
Gaia's GSI methods all exist under certain "domains". For the purposes of everyone's sanity, this library maps to those domains. The supported methods can be found by clicking into one of the domain folders and reading the README file.
Supported Domains
- Environment (partial)
- Inventory (partial)
- User (partial)
License
Please note that this library (as of version 4) is licensed under the Mozilla Public License 2.0. You may want to read Mozilla's FAQ to learn about the license.
Disclaimer
This project is not affiliated in any way with Gaia Online or Gaia Interactive.