Real-Time Translation & Transliteration

Verifiet's API provides translation support on text fields. Callers can specify the language in the API request, and the response will include a translation section for all the text fields.

Simplify specify the language code in ISO-639 as a query parameter in the API request, for example, language=en.

Supported Languages

Below are the languages supported by Verifiet's API. If you need additional language support to be added, submit a feature request to team@verifiet.com

LanguageCode (ISO-639)Language
arArabic Beta
ruRussian Beta
faPersian (Farsi) Beta
enEnglish
zhChinese (Simplified)
twChinese (Traditional)
csCzech
daDanish
nlDutch
fiFinnish
frFrench
deGerman
iwHebrew
itItalian
noNorwegian
ptPortuguese
skSlovak
esSpanish
svSwedish

Request Format

Request URL: https://api.verifiet.com/v1/company/:countryCode/:companyId?language=:languageCode

You can substitute the languageCode in the request.

PropertyTypeDescription
countryCodeenumLetter country code representing the country of the requested company.
companyIdstringIdentifier of the company following the structure of the registered company.
languageCodestringLetter code representing the language of the response.

If the specified language is the same as the native language of the country, translation will not be returned.

Response Format

A standard response will contain a new blob translated, where all applicable text fields will be translated. The translated structure looks as below:

PropertyTypeDescription
translated.namestringOfficial name of the corporation in requested language.
translated.statusstringThe status of the company.
translated.registeredAddressstringOfficial address of the corporation in the government registry in requested language.

GET/company?language=en

Example Request



Optional attributes

  • Name
    language
    Type
    string
    Description

    Requested language code for the response in ISO-639 format, for example, English is en and Spanish is es.

Request

GET
/v1/company/{countryCode}/{companyId}?language={languageCode}
curl -G https://api.verifiet.com/v1/company/il/5001010101?language=en \
-H "Authorization: Bearer {token}"

Response

{
    "isRegistered": true,
    "officialName": "אולימפיה אוטו בע~מ",
    "registeredAddress": "325 הירקון, תל אביב - יפו, 6350454, ישראל",
    "registrationDate": "1936-09-13",
    "status": "Active",
    "translated": {
        "name": "Olympia Auto Ltd.",
        "registeredAddress": "325 Yarkon, Tel Aviv - Jaffa, 6350454, Israel",
        "status": "Active"
    }
}