Documentation
  • Introduction
  • ⚡Quick Guide
  • APIs
    • 🇦🇪UAE Resident ID OCR
    • 🔑OAuth Token
    • 🆔National ID OCR
      • 🔁API Response
    • 🧑‍💼Face Match
      • Face Match (Two Images)
      • Face Match (Image & Transaction ID)
    • ✈️Passport
    • ✈️Libyan passport
    • 🚗Car License
    • ↔️Transliteration
      • National ID Transliteration
      • Commercial Register Translation
      • Names Transliteration
    • 🏫Know Your Business (eKYB)
      • 📖Data Extraction & Verifications
        • Egyptian Commercial Register ID OCR
          • ✅With Verification
        • Egyptian Tax Card OCR
    • 📄Valify Sanction Shield
      • Sanction Shield v2.1.0
    • Sanction Shield v2.0.0
    • 🛡️Supported lists
    • ❓Transaction Inquiry
    • 📷Fetch Images
    • 🔒OTP
      • 📲Send Phone OTP
      • ✅Verify Phone OTP
      • 📥Send Email OTP
      • ✅Verfiy Email OTP
    • Response Data Validation
  • Error Codes
    • Valify Error Codes
    • HTTP Codes
  • References
Powered by GitBook
On this page
  • Transliteration (Arabic to English)
  • Integration
  1. APIs
  2. Transliteration

Commercial Register Translation


Valify's Commercial Register Transliteration is designed to enable organizations to seamlessly transliterate Arabic text from Egyptian Commercial Register into English. Our innovative product automates the process of converting names, addresses, and other textual data into a consistent transliterated version, ensuring accuracy and compatibility across different systems and languages.

Transliteration (Arabic to English)

POST https://valifystage.com/api/v1/transliterate/egy-cr/

Headers

Name
Type
Description

Content-Type

string

application/json

Authorization

string

Bearer <access-token>

Request Body

Name
Type
Description

bundle_key

string

A bundle key provided to you by Valify.

json

object

Object containing at least one of the parameters below: { "company_type": <str>,

"cr_number": <str>,

"cr_unique_number": <str>,

"licensing_authority": <str>,

"company_name": <str>,

"company_commercial_name": <str>,

"incorportation_date":' <str>,

"renewal_date": <str>,

"address": <str>,

"owners": <str>,

"capital": <str>,

"paid_in_capital": <str>,

"partners_share_value":<str>,

"in_kind_shares_value": <str>,

"remaining_capital_pledged": <str> }

{
    'result': {
        "company_type": '<str>',
        "cr_number": '<str>',
        "cr_unique_number": '<str>',
        "licensing_authority": '<str>',
        "company_name": '<str>',        
        "company_commercial_name": '<str>',
        "incorporation_date": '<str>',
        "renewal_date": '<str>',
        "address": '<str>',
        "owners": '<list>',
        "capital": '<str>',
        "paid_in_capital": '<str>',
        "partners_share_value": '<str>',
        "in_kind_shares_value": '<str>',
        "remaining_capital_pledged": '<str>',
    },
    'transaction_id': '<str>',
    'trials_remaining': '<int>'
}
{
    "message": "Bad Request – invalid request received (e.g. missing Bundle key, required parameters or invalid json) | Make sure all the required parameters are included"
}
{
    "message": "Unauthorized – your Bundle key is invalid"
}
{
    "message": "Forbidden – specified access_token could not be found"
}
{
    "message": "Not Found"
}
{
    "message": "Unsupported Media Type"
}
{
    "message": "<error-description>",
    "error_code": <valify-error-code>
}
{
    "message": "Internal Server Error"
}

Integration

import requests


token = "<token>"
data = {
        "company_type": <str>,
        "cr_number": <str>,
        "cr_unique_number": <str>,
        "licensing_authority": <str>,
        "company_name": <str>,
        "company_commercial_name": <str>,
        "incorportation_date":' <str>,
        "renewal_date": <str>,
        "address": <str>,
        "owners": <str>,
        "capital": <str>,
        "paid_in_capital": <str>,
        "partners_share_value":<str>,
        "in_kind_shares_value": <str>,
        "remaining_capital_pledged": <str>
    }
 

r = requests.post("https://<base-url>/api/v1/translate/egy-cr/",
        json=data,
        headers={'Authorization': 'Bearer %s' % token}
    )
print(r.json())                      
PreviousNational ID TransliterationNextNames Transliteration

Last updated 9 months ago

↔️