This endpoint is used for retreiving or creating a translation tree like structure containing all folders and keys for a specific app by either appId or gameId. According to your app settings if the requested language is not available it'll be auto-translated and saved.

Log in to see full request history

Example of a request for specific keys by path.

const axios = require('axios'); // TODO Developer uncomment lines bellow // let appId = // let languageIsoCode = // let keyPath1 = // let keyPath2 = let config = { method: 'get', maxBodyLength: Infinity, url: 'https://cloud.fireballserver.com/translations/v1/translate?appId=${appId}&languageIsoCode=${languageCode}&keyPaths=${keyPath1}&keyPaths=${keyPath2}', }; axios.request(config) .then((response) => { console.log(JSON.stringify(response.data)); }) .catch((error) => { console.log(error); });
Query Params
string

Application UUID v4, required if no gameId is specified

string

Game UUID v4, required if no appId is specified

string
required

A valid ISO 639-1 two-letter code or a valid virtual language code.

keyPaths
array of strings

Optional array of key paths in the following format "{folder_1}/.../{key_one}". If provided only these keys will be returned in the response.

keyPaths
string

Optional folder path. If provided the whole content of the folder and any sub folders will be returned

Responses

Language
Click Try It! to start a request and see the response here! Or choose an example:
application/json