GET/job/{id}/analyse
Get a translation job analysis results
Fetch job analysis with given id
Parameters
Body JSON
token:
required
string
You need access token to call this endpoint. You can retrieve it by calling /auth/login endpoint. Tokens are expired in 24 hours for security reasons.
id:
required
string
Id of the job
Example Response
{
"status": "success",
"code": 200,
"job": [
{
"all": {
"percent": 100,
"words": 10,
"segments": 3,
"characters": 57,
"normalizedPages": 0.035555556
},
"repitition": {
"percent": 40,
"words": 4,
"segments": 1,
"characters": 24,
"normalizedPages": 0.015
}
}
],
"msg": "Results of analysis"
}