Skip to main content

Project languages

Returns all project languages and languages statistics.

Request type: POST

API Endpoint

https://api.translized.com/language/list

Parameters

ParamTypeRequiredDescription
projectIdStringTrueId of your project

Example requests

curl -X POST -H "Content-Type: application/json" \
-H "api-token: 42cf5fec-a74c-4a53-8ebc-86a4e52b7ce6" \
-d "{"projectId":"A3KJtLw4mt"}" \
https://api.translized.com/language/list
info
  • projectId can be found inside your project's settings. (Translized App > Your Project > Settings )

Example response

{
"result": {
"languages": [
{
"code": "en",
"label": "English",
"translated": 271,
"percentage": 100
},
{
"code": "sr",
"label": "Serbian",
"translated": 44,
"percentage": 16.2
}
]
}
}