Skip to content

Export JSON

Exports the project as nested JSON keyed by language, then by group technical names, then entry technical names. Missing translations fall back to the entry’s base term.

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

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

Content-Type: application/json

{
"en-US": {
"footer": {
"labelImprint": "Imprint"
}
},
"de-DE": {
"footer": {
"labelImprint": "Impressum"
}
}
}
StatusWhen
401Missing or invalid API key
404Project not found
500Export failed