With Intento Operations API you could easily obtain a history of translation jobs for your account with a simple API call:
curl -XGET -H 'apikey: YOUR_API_KEY' https://api.inten.to/operations/'
Please replace YOUR_API_KEY with your Production Key that is available in the Intento Dashboard.
Please refer to the API documentation for call parameters and returned values here.
The call returns a list of operations along with technical information. Each record contains metadata of individual translation calls, i.e. time of operation, source text language, translation language, used MT provider, glossary, smart routing if used, etc.
The translated text could also be obtained through the call if allowed by your account data protection policy.
With Operations API you can also get the historical data to PowerBI for further analysis with a simple Power Query:
let
Source = Json.Document(Web.Contents("https://api.inten.to/operations/",
[Headers=[#"Content-type"="application/json", apikey=YOUR_API_KEY]]))
in
Source