> Portal Navigation: > > - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version. > - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages). > - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`). > - Top-level index of all portals: https://dev.wix.com/docs/llms.txt > - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt # CheckSufficientCredits # Package: machineTranslation # Namespace: TranslationCredits # Method link: https://dev.wix.com/docs/api-reference/business-management/multilingual/machine-translation/credit-data/check-sufficient-credits.md ## Permission Scopes: Wix Multilingual: SCOPE.MULTILINGUAL.MANAGE_TRANSLATIONS ## Introduction Checks whether a site has enough credits to translate the specified number of words. --- ## REST API ### Schema ``` Method: checkSufficientCredits Description: Checks whether a site has enough credits to translate the specified number of words. URL: https://www.wixapis.com/translation-credits/v1/credit/is-eligible Method: POST # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: wordCount Method parameters: param name: wordCount | type: wordCount | description: Number of words to translate. | required: true Return type: CheckSufficientCreditsResponse - name: sufficientCredits | type: boolean | description: Whether the site has enough credits to translate the specified number of words. Possible Errors: HTTP Code: 404 | Status Code: NOT_FOUND | Application Code: FEATURE_NOT_FOUND | Description: Couldn't find the feature. ``` ### Examples ### Check Sufficient Credits ```curl curl -X GET \ 'https://www.wixapis.com/translation-credits/v1/credit/is-eligible' \ -H 'Authorization: ' \ -d '{ "wordCount": 100 }' ``` --- ## JavaScript SDK ### Schema ``` Method: wixClientAdmin.machineTranslation.TranslationCredits.checkSufficientCredits(wordCount) Description: Checks whether a site has enough credits to translate the specified number of words. # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: wordCount Method parameters: param name: wordCount | type: integer | description: Number of words to translate. | required: true Return type: PROMISE - name: sufficientCredits | type: boolean | description: Whether the site has enough credits to translate the specified number of words. Possible Errors: HTTP Code: 404 | Status Code: NOT_FOUND | Application Code: FEATURE_NOT_FOUND | Description: Couldn't find the feature. ``` ### Examples ### checkSufficientCredits ```javascript import { translationCredits } from '@wix/multilingual'; async function checkSufficientCredits(wordCount) { const response = await translationCredits.checkSufficientCredits(wordCount); }; ``` ### checkSufficientCredits (with elevated permissions) ```javascript import { translationCredits } from '@wix/multilingual'; import { auth } from '@wix/essentials'; async function myCheckSufficientCreditsMethod(wordCount) { const elevatedCheckSufficientCredits = auth.elevate(translationCredits.checkSufficientCredits); const response = await elevatedCheckSufficientCredits(wordCount); } ``` ### checkSufficientCredits (self-hosted) Self-hosted SDK calls require you to [create a client](https://dev.wix.com/docs/sdk/articles/work-with-the-sdk/about-the-wix-client.md). ```javascript import { createClient } from '@wix/sdk'; import { translationCredits } from '@wix/multilingual'; // Import the auth strategy for the relevant access type // Import the relevant host module if needed const myWixClient = createClient ({ modules: { translationCredits }, // Include the auth strategy and host as relevant }); async function checkSufficientCredits(wordCount) { const response = await myWixClient.translationCredits.checkSufficientCredits(wordCount); }; ``` ---