The raphael-rs project uses the augenfrosch API, which might be a temporary workaround.
async fn fetch_and_parse<T: SheetData>(lang: &str, schema_override: Option<&str>) -> Vec<T> {
const XIV_API: &str = "https://v2.xivapi.com/api";
const BOILMASTER_CN: &str = "https://boilmaster-chs.augenfrosch.dev/api";
const BOILMASTER_KR: &str = "https://boilmaster-ko.augenfrosch.dev/api";
const BOILMASTER_TW: &str = "https://boilmaster-tc.augenfrosch.dev/api";
https://github.com/KonaeAkira/raphael-rs/blob/5d8169ccb89ee2b4d739994512ce7c8a3aa32ada/raphael-data-updater/src/main.rs#L7
If these API forks are well maintained and updated in a timely manner, they would allow us to use a XIVAPI-style interface for all regions.
Originally posted by @xiashtra in #908 (comment)