Public API
Get translation history
Returns translation change history for a single translation or the entire project. Includes who made the change and when. Requires `canViewTranslations` permission.
sb-access-token<token>
Supabase Auth session cookie. Automatically set when users log in via the Movabase web app.
In: cookie
Path Parameters
project-id*string
Project ID
Format
uuidQuery Parameters
translationId?string
Specific translation ID to get history for. If omitted, returns project-wide history.
limit?integer
Maximum number of history entries to return
Default
50offset?integer
Number of history entries to skip
Default
0Response Body
application/json
curl -X GET "https://example.com/api/projects/497f6eca-6276-4993-bfeb-53cbbbba6f08/translations/history"{ "data": [ { "id": "string", "translation_id": "string", "action": "string", "old_value": "string", "new_value": "string", "changed_by": "string", "changed_by_email": "string", "created_at": "2019-08-24T14:15:22Z" } ]}