Movabase Docs
Public API

Create translation

Creates a new translation key with values for one or more languages. Auto-creates file_translation records if they don't exist. Restores soft-deleted entries when possible. Requires `canEditTranslations` permission.

POST
/api/projects/{project-id}/translations

Authorization

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

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

curl -X POST "https://example.com/api/projects/497f6eca-6276-4993-bfeb-53cbbbba6f08/translations" \  -H "Content-Type: application/json" \  -d '{    "key": "string",    "fileName": "string",    "values": {      "en": "Hello",      "es": "Hola"    }  }'
{  "inserted": [    {      "language": "string",      "id": "string"    }  ],  "skipped": [    {      "language": "string",      "reason": "string"    }  ]}