Real-Time Translation & Transliteration
Translation and Transliteration capabilities will be provided with an added cost. To learn more about our pricing structure schedule a call
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 |
---|---|
ar | Arabic Beta |
ru | Russian Beta |
fa | Persian (Farsi) Beta |
en | English |
zh | Chinese (Simplified) |
tw | Chinese (Traditional) |
cs | Czech |
da | Danish |
nl | Dutch |
fi | Finnish |
fr | French |
de | German |
iw | Hebrew |
it | Italian |
no | Norwegian |
pt | Portuguese |
sk | Slovak |
es | Spanish |
sv | Swedish |
Request Format
Request URL: https://api.verifiet.com/v1/company/:countryCode/:companyId?language=:languageCode
You can substitute the languageCode
in the request.
Property | Type | Description |
---|---|---|
countryCode | enum | Letter country code representing the country of the requested company. |
companyId | string | Identifier of the company following the structure of the registered company. |
languageCode | string | Letter 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:
Property | Type | Description |
---|---|---|
translated.name | string | Official name of the corporation in requested language. |
translated.status | string | The status of the company. |
translated.registeredAddress | string | Official address of the corporation in the government registry in requested language. |
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 ises
.
Request
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"
}
}