Experimental: This is an experimental technology
Check the Browser compatibility table carefully before using this in production.
Secure context: This feature is available only in secure contexts (HTTPS), in some or all supporting browsers.
The measureInputUsage() method of the Translator interface reports how much input quota would be used by a translation operation for a given text input.
measureInputUsage(input) measureInputUsage(input, options)
inputA string representing the input text you want an input usage measurement for.
options OptionalAn object specifying configuration options for the measureInputUsage() operation. Possible values include:
signalAn AbortSignal object instance, which allows the measureInputUsage() operation to be aborted via the associated AbortController.
A Promise that fulfills with a number specifying the inputQuota usage of the given input text.
This number is implementation-dependant; if it is less than the inputQuota, the string can be translated.
NotAllowedError DOMException
Thrown if usage of the Translator API is blocked by a translator Permissions-Policy.
NotReadableError DOMException
Thrown if the output translation was filtered by the user agent, for example because it was detected to be harmful, inaccurate, or nonsensical.
UnknownError DOMException
Thrown if the measureInputUsage() call failed for any other reason, or a reason the user agent did not wish to disclose.
In the below snippet, we create a new Translator instance using create(), then return the total input quota via inputQuota and the input quota usage for a translating a particular text string via measureInputUsage().
We then test to see if the individual input usage for that string is greater than the total available quota. If so, we throw an appropriate error; it not, we commence translating the string using translate().
const translator = await Translator.create({
sourceLanguage: "en",
targetLanguage: "ja",
});
const totalInputQuota = translator.inputQuota;
const inputUsage = await translator.measureInputUsage(myTextString);
if (inputUsage > totalInputQuota) {
throw new Error("Insufficient quota to translate.");
} else {
console.log("Quota available to translate.");
const translation = await translator.translate(myTextString);
// ...
}
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Opera | Safari | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | WebView Android | WebView on iOS | |
measureInputUsage |
138Availability may be subject to geographical restrictions. |
No | No | 122Availability may be subject to geographical restrictions. |
No | No | No | No | No | No | No | No |
© 2005–2025 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/Translator/measureInputUsage