Movabase Docs
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.

GET
/api/projects/{project-id}/translations/history
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

Formatuuid

Query 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

Default50
offset?integer

Number of history entries to skip

Default0

Response Body

application/json

curl -X GET "https://app.movabase.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"
    }
  ]
}