Get statistics on translations for specified locales and entity types. This includes overall translation progress for each entity type, and statistics for each locale within those entity types.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
The table names of entities to retrieve translation statistics for.
The table name of an entity.
OK
The translation statistics details.
The translation statistics for different entity types. The key is the entity type, and the value is an object containing the statistics for that entity type.
{
"product": {
"expected": 150,
"translated": 120,
"missing": 30,
"by_locale": {
"fr-FR": {
"expected": 150,
"translated": 120,
"missing": 30
}
}
}
}