- JSON for application runtime consumption
- CSV for spreadsheet-first workflows
- XLIFF for translation tooling and localization vendors
- XML for legacy or platform-specific pipelines
- YAML for config-driven i18n setups
format query parameter on the export endpoint
(json, csv, xliff, xml, yaml). json is the default.
Responses use the matching content type — application/json, text/csv,
application/xml (XLIFF and XML), or text/yaml — so scripts can pipe the
body straight to a file with the right extension.
Choosing a Format
- Use JSON for i18n runtime libraries and deploy pipelines
- Use CSV when translators or PMs iterate in spreadsheets
- Use XLIFF when handing off to a translation agency or CAT tool
- Use XML / YAML to match an existing runtime’s expected file shape
Export Quality Checks
- Validate locale coverage
- Validate placeholder consistency
- Confirm environment-specific overrides
Example JSON Output
Next Steps
- Bring data in via Import Translations
- Wire automation from Integration Examples