Movabase Docs
Public API

List translation keys

Returns the unique set of translation keys for a specific file and language combination. Requires `canViewTranslations` permission.

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

fileName*string

File name to get keys for

language*string

Language code to get keys for

Response Body

application/json

curl -X GET "https://app.movabase.com/api/projects/497f6eca-6276-4993-bfeb-53cbbbba6f08/translations/keys?fileName=string&language=string"
{
  "keys": [
    "string"
  ]
}