Exports translations as flat dotted-key JSON suitable for vue-i18n. Keys combine group path and entry technical name (for example footer.labelImprint). Missing translations fall back to the entry’s base term.
footer.labelImprint
GET /api/v1/projects/{id}/export/vue-i18n
id
format
true
Authorization: Bearer <your-api-key>
curl -sS "https://collingo.app/api/v1/projects/clproj0123456789abcdefgh/export/vue-i18n?format=true" \ -H "Authorization: Bearer <your-api-key>" \ -o vue-i18n.json
Content-Type: application/json
{ "en-US": { "footer.labelImprint": "Imprint" }, "de-DE": { "footer.labelImprint": "Impressum" }}
401
404
500