Home - swgoh-utils/swgoh-comlink GitHub Wiki

This wiki will help you get started using SWGoH Comlink. It also includes detailed information on the endpoints, responses, and tips for parsing the data to help you find the information you are looking for to run your tools.

You can find additional support on the SWGoH Comlink Discord.

Navigation

Getting Started
Troubleshooting
FAQ
Game Data
Player Data
Guild Data

Important Notes

Stats and Galactic Power

Stats and galactic power for units are not found in any of the returned game data so if your project requires them you can use SWGoH Stats to help calculate them.

Assets

If your project requires any of the game assets, SWGoH Asset Extractor is available to help you get them.

Google Sheets

If you are trying to create a project using Google Sheets you will need to create work-arounds for Google Sheets limitations:

  • urlFetch() has a 50MB size limit which will make you unable to use the /data and /localization endpoints
  • Utilities.unzip() has a 100 MB file size limit for the unzipped data which means there is no way to get /localization data

There are two ways to get around this:

  1. Create a way to alter/format the data before returning the response to urlFetch() so it stays within limits.
  2. Separate each /data collection and remove unused code to keep file sizes down and separate each language in the /localization endpoint. Gamedata is a repo where you can already get these separated files for your projects.
⚠️ **GitHub.com Fallback** ⚠️