Skip to content

Export i18next

Exports an i18next-compatible archive: a gzip-compressed tar containing <locale>/translation.json files. Keys use dotted group paths plus the entry technical name. Missing translations fall back to the entry’s base term.

GET /api/v1/projects/{id}/export/i18next

AuthRequired
BodyNone
NameTypeDescription
idstringProject id
NameTypeDescription
formatbooleanWhen true, pretty-print JSON inside the archive
Authorization: Bearer <your-api-key>
Terminal window
curl -sS "https://collingo.app/api/v1/projects/clproj0123456789abcdefgh/export/i18next" \
-H "Authorization: Bearer <your-api-key>" \
-o i18next.tar.gz

Extract example:

Terminal window
tar -tzf i18next.tar.gz
# de-DE/translation.json
# en-US/translation.json

Example de-DE/translation.json content:

{
"footer.labelImprint": "Impressum"
}

Content-Type: application/gzip — binary tar.gz download (often with a Content-Disposition filename).

StatusWhen
401Missing or invalid API key
404Project not found
500Export failed