ListLanguages
curl --request GET \
--url https://api.gitlocalize.com/v1/repositories/{id}/languages \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.gitlocalize.com/v1/repositories/{id}/languages', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.gitlocalize.com/v1/repositories/{id}/languages"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)[
{
"code": "<string>",
"name": "<string>",
"completion": 50
}
]Repositories
List Languages
Target languages configured for a repository, with translation progress.
GET
/
v1
/
repositories
/
{id}
/
languages
ListLanguages
curl --request GET \
--url https://api.gitlocalize.com/v1/repositories/{id}/languages \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.gitlocalize.com/v1/repositories/{id}/languages', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.gitlocalize.com/v1/repositories/{id}/languages"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)[
{
"code": "<string>",
"name": "<string>",
"completion": 50
}
]Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

