POST
/
v2
/
jobs
/
{jobId}
/
stats
Retrieve Job Leverage Stats
curl --request POST \
  --url https://api.lilt.com/v2/jobs/{jobId}/stats
{
  "sourceWords": 0,
  "exactWords": 0,
  "fuzzyWords": 0,
  "newWords": 0,
  "projects": [
    {
      "id": 1,
      "sourceWords": 1000,
      "exactWords": 800,
      "fuzzyWords": 150,
      "newWords": 50
    }
  ]
}

Authorizations

key
string
query
required

Path Parameters

jobId
integer
required

A job id.

Response

A job leverage stats object.

A job leverage stats object shows an overview of job's statistical data including total number of exact words, fuzzy words, and exact words for the job in total and for each project.

sourceWords
integer

Total number of source words.

Example:

0

exactWords
integer

Total number of exact words.

Example:

0

fuzzyWords
integer

Total number of fuzzy words.

Example:

0

newWords
integer

Total number of new words.

Example:

0

projects
object[]