 {"id":8657,"date":"2026-03-05T11:11:30","date_gmt":"2026-03-05T10:11:30","guid":{"rendered":"https:\/\/www.altertax-avocats.com\/calculating-683-registration-fees-a-practical-guide\/"},"modified":"2026-03-05T11:11:30","modified_gmt":"2026-03-05T10:11:30","slug":"calculating-683-registration-fees-a-practical-guide","status":"publish","type":"post","link":"https:\/\/www.altertax-avocats.com\/en\/calculating-683-registration-fees-a-practical-guide\/","title":{"rendered":"Calculating 683 registration fees: a practical guide"},"content":{"rendered":"\n \n        <h1>Calculating registration duties in accordance with Article 683 of the French General Tax Code (CGI)<\/h1>\n        <div id=\"simu-zloop\">\n        <div class=\"simulator-wrapper\" id=\"simu-zloop\">\n<div class=\"simulator-header\">\n<h3>Registration duty simulator &#8211; Article 683 CGI<\/h3>\n<p class=\"simulator-description\">Calculate your registration fees according to your transaction<\/p>\n<\/div>\n<div class=\"simulator-form\">\n<div class=\"form-group\">\n<label for=\"transaction-type\">Type of transaction :<\/label>\n<select class=\"form-control\" id=\"transaction-type\">\n<option value=\"standard\">Standard transfer for valuable consideration<\/option>\n<option value=\"immobilier\">Sale of shares &#8211; Preponderantly real estate company<\/option>\n<option value=\"autre\">Sale of shares &#8211; Other company<\/option>\n<\/select>\n<\/div>\n<div class=\"form-group\">\n<label for=\"transaction-value\">Transaction value (\u20ac) :<\/label>\n<input class=\"form-control\" id=\"transaction-value\" min=\"0\" placeholder=\"Ex: 200000\" step=\"1000\" type=\"number\">\n<\/div>\n<button class=\"btn-calculate\" onclick=\"window.calculateDroits()\">Calculate rights<\/button>\n<\/div>\n<div class=\"results-container\" id=\"results-container\" style=\"display: none;\">\n<div class=\"results-header\">\n<h4>Calculation results<\/h4>\n<\/div>\n<div class=\"calculation-details\">\n<div class=\"detail-row\">\n<span class=\"detail-label\">Transaction value :<\/span>\n<span class=\"detail-value\" id=\"base-value\">&#8211;<\/span>\n<\/div>\n<div class=\"detail-row\" id=\"abattement-row\" style=\"display: none;\">\n<span class=\"detail-label\">Applicable allowance :<\/span>\n<span class=\"detail-value\" id=\"abattement-value\">&#8211;<\/span>\n<\/div>\n<div class=\"detail-row\" id=\"taxable-row\" style=\"display: none;\">\n<span class=\"detail-label\">Taxable base :<\/span>\n<span class=\"detail-value\" id=\"taxable-value\">&#8211;<\/span>\n<\/div>\n<div class=\"detail-row\">\n<span class=\"detail-label\">Applicable rate :<\/span>\n<span class=\"detail-value\" id=\"tax-rate\">&#8211;<\/span>\n<\/div>\n<div class=\"detail-row total-row\">\n<span class=\"detail-label\"><strong>Registration fees due :<\/strong><\/span>\n<span class=\"detail-value\" id=\"total-amount\"><strong>&#8211;<\/strong><\/span>\n<\/div>\n<\/div>\n<div class=\"info-box\">\n<p class=\"info-text\" id=\"info-message\"><\/p>\n<\/div>\n<\/div>\n<\/div>\n<script type=\"text\/javascript\">\nwindow.calculateDroits = function() {\n    const transactionType = document.getElementById('transaction-type').value;\n    const valueInput = document.getElementById('transaction-value').value;\n    \n    \/\/ Validation\n    if (!valueInput || valueInput === '') {\n        alert('Veuillez saisir une valeur de transaction');\n        return;\n    }\n    \n    const transactionValue = parseFloat(valueInput);\n    \n    if (isNaN(transactionValue) || transactionValue <= 0) { alert('Veuillez saisir une valeur valide sup\u00e9rieure \u00e0 0'); return; } let taux = 0; let abattement = 0; let baseTaxable = transactionValue; let infoMessage = ''; \/\/ Calcul selon le type d'op\u00e9ration if (transactionType === 'standard') { taux = 5; infoMessage = 'Pour une mutation \u00e0 titre on\u00e9reux standard, le taux appliqu\u00e9 est de 5%.'; document.getElementById('abattement-row').style.display = 'none'; document.getElementById('taxable-row').style.display = 'none'; } else if (transactionType === 'immobilier') { taux = 5; infoMessage = 'Pour les cessions de parts de soci\u00e9t\u00e9s \u00e0 pr\u00e9pond\u00e9rance immobili\u00e8re, le taux est de 5%.'; document.getElementById('abattement-row').style.display = 'none'; document.getElementById('taxable-row').style.display = 'none'; } else if (transactionType === 'autre') { taux = 3; abattement = 23000; baseTaxable = Math.max(0, transactionValue - abattement); infoMessage = 'Pour les cessions de parts dans d'autres soci\u00e9t\u00e9s, un abattement de 23 000 \u20ac s'applique par c\u00e9dant et par an, avec un taux de 3% sur la base taxable.'; document.getElementById('abattement-row').style.display = 'flex'; document.getElementById('taxable-row').style.display = 'flex'; document.getElementById('abattement-value').textContent = formatCurrency(abattement); document.getElementById('taxable-value').textContent = formatCurrency(baseTaxable); } const droitsDus = baseTaxable * (taux \/ 100); \/\/ Affichage des r\u00e9sultats document.getElementById('base-value').textContent = formatCurrency(transactionValue); document.getElementById('tax-rate').textContent = taux + '%'; document.getElementById('total-amount').textContent = formatCurrency(droitsDus); document.getElementById('info-message').textContent = infoMessage; \/\/ Afficher le conteneur de r\u00e9sultats document.getElementById('results-container').style.display = 'block'; \/\/ Scroll vers les r\u00e9sultats document.getElementById('results-container').scrollIntoView({ behavior: 'smooth', block: 'nearest' }); }; function formatCurrency(amount) { return new Intl.NumberFormat('fr-FR', { style: 'currency', currency: 'EUR', minimumFractionDigits: 2, maximumFractionDigits: 2 }).format(amount); } \/\/ Permettre le calcul avec la touche Entr\u00e9e document.addEventListener('DOMContentLoaded', function() { const valueInput = document.getElementById('transaction-value'); if (valueInput) { valueInput.addEventListener('keypress', function(event) { if (event.key === 'Enter') { window.calculateDroits(); } }); } }); <\/script>\n<style type=\"text\/css\">\n.simulator-wrapper {\n    max-width: 700px;\n    margin: 20px auto;\n    padding: 25px;\n    background: #ffffff;\n    border-radius: 8px;\n    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);\n    font-family: Poppins, sans-serif;\n}\n\n.simulator-wrapper * {\n    box-sizing: border-box;\n}\n\n.simulator-header {\n    text-align: center;\n    margin-bottom: 25px;\n    padding-bottom: 15px;\n    border-bottom: 2px solid #e0e0e0;\n}\n\n.simulator-header h3 {\n    margin: 0 0 10px 0;\n    color: #2c3e50;\n    font-size: 24px;\n    font-weight: 600;\n}\n\n.simulator-description {\n    margin: 0;\n    color: #7f8c8d;\n    font-size: 14px;\n}\n\n.simulator-form {\n    margin-bottom: 25px;\n}\n\n.form-group {\n    margin-bottom: 20px;\n}\n\n.form-group label {\n    display: block;\n    margin-bottom: 8px;\n    color: #34495e;\n    font-weight: 500;\n    font-size: 15px;\n}\n\n.form-control {\n    width: 100%;\n    padding: 12px 15px;\n    border: 1px solid #dcdde1;\n    border-radius: 5px;\n    font-size: 15px;\n    transition: border-color 0.3s ease;\n}\n\n.form-control:focus {\n    outline: none;\n    border-color: #3498db;\n    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);\n}\n\n.btn-calculate {\n    width: 100%;\n    padding: 14px 20px;\n    background: #3498db;\n    color: white;\n    border: none;\n    border-radius: 5px;\n    font-size: 16px;\n    font-weight: 600;\n    cursor: pointer;\n    transition: background 0.3s ease;\n}\n\n.btn-calculate:hover {\n    background: #2980b9;\n}\n\n.btn-calculate:active {\n    transform: translateY(1px);\n}\n\n.results-container {\n    margin-top: 30px;\n    padding: 20px;\n    background: #f8f9fa;\n    border-radius: 8px;\n    border-left: 4px solid #27ae60;\n}\n\n.results-header h4 {\n    margin: 0 0 20px 0;\n    color: #2c3e50;\n    font-size: 20px;\n    font-weight: 600;\n}\n\n.calculation-details {\n    margin-bottom: 20px;\n}\n\n.detail-row {\n    display: flex;\n    justify-content: space-between;\n    padding: 12px 0;\n    border-bottom: 1px solid #e0e0e0;\n}\n\n.detail-row:last-child {\n    border-bottom: none;\n}\n\n.detail-label {\n    color: #34495e;\n    font-size: 15px;\n}\n\n.detail-value {\n    color: #2c3e50;\n    font-weight: 600;\n    font-size: 15px;\n}\n\n.total-row {\n    margin-top: 10px;\n    padding-top: 15px;\n    border-top: 2px solid #27ae60;\n    background: rgba(39, 174, 96, 0.05);\n    padding: 15px 10px;\n    border-radius: 5px;\n}\n\n.total-row .detail-value {\n    color: #27ae60;\n    font-size: 18px;\n}\n\n.info-box {\n    margin-top: 15px;\n    padding: 15px;\n    background: #e8f4f8;\n    border-radius: 5px;\n    border-left: 3px solid #3498db;\n}\n\n.info-text {\n    margin: 0;\n    color: #2c3e50;\n    font-size: 14px;\n    line-height: 1.6;\n}\n\n@media (max-width: 600px) {\n    .simulator-wrapper {\n        padding: 20px 15px;\n    }\n    \n    .simulator-header h3 {\n        font-size: 20px;\n    }\n    \n    .detail-row {\n        flex-direction: column;\n        gap: 5px;\n    }\n    \n    .detail-value {\n        text-align: left;\n    }\n}\n<\/style>\n<div class=\"zloop-color-1\" style=\"background-color: #fffbeb; border-left: 4px solid #fbbf24; padding: 1rem; margin: 1rem 0;\">\n<div style=\"display: flex; align-items: center;\">\n<svg fill=\"none\" height=\"20\" stroke=\"#fbbf24\" stroke-width=\"2\" viewbox=\"0 0 24 24\" width=\"20\">\n<circle cx=\"12\" cy=\"12\" r=\"10\"\/>\n<line x1=\"12\" x2=\"12\" y1=\"16\" y2=\"12\"\/>\n<line x1=\"12\" x2=\"12.01\" y1=\"8\" y2=\"8\"\/>\n<\/svg>\n<p style=\"margin-left: 0.75rem; color: #b45309;\">\n  The results provided are given for information only and do not engage our responsibility in any way.\n        <\/p>\n<\/div>\n<\/div>\n\n        <\/div>\n        <div id=\"Zloop-content\">\n        <p>Article 683 of the French General Tax Code (CGI) sets out the procedures for calculating registration duties on transfers of ownership, sales of shares and company deeds. This provision determines the tax base and rates applicable to these asset transactions. Mastering this calculation enables you to anticipate your tax obligations and avoid any subsequent <a href=\"https:\/\/www.altertax-avocats.com\/redressement-fiscal\/\">tax adjustments<\/a>. These regulations are part of a wider framework of <a href=\"https:\/\/www.altertax-avocats.com\/contentieux-fiscal\/droits-enregistrement\/\">registration duties<\/a> that govern many transactions.   <\/p><h2>What is the calculation of registration fees under article 683?<\/h2><p>The calculation of registration duties under<a href=\"https:\/\/www.altertax-avocats.com\/contentieux-fiscal\/droits-enregistrement\/683-cgi\/\">article 683 of the French General Tax Code (CGI)<\/a> concerns deeds and agreements subject to compulsory or voluntary registration, in particular transfers of ownership, sales of shares and certain company deeds. This tax provision determines the tax base and calculation methods applicable to these specific transactions. It lays down the rules for establishing the exact amount of duty due to the Treasury, the accuracy of which is essential to avoid any subsequent tax reassessment.  <\/p><h2>Calculation components<\/h2><p>The calculation of registration fees is based on a number of essential components that need to be mastered in order to accurately determine the amount due. These elements are based on two fundamental pillars: the tax base, which defines the taxable amount of the transaction, and the applicable rates, which vary according to the legal nature of the deed concerned. Understanding these mechanisms is all the more important as certain transactions may benefit from<a href=\"https:\/\/www.altertax-avocats.com\/abattement-fiscal\/\">tax allowances<\/a> or specific regimes, notably in the case of <a href=\"https:\/\/www.altertax-avocats.com\/fiscalite-des-donations-et-successions\/\">gifts and inheritances<\/a>. Accuracy in identifying these parameters determines the tax regularity of your tax return, and protects you against any subsequent reassessments.   <\/p><h3>The tax base<\/h3><p>The <a href=\"https:\/\/www.altertax-avocats.com\/base-dimposition\/\">tax base<\/a> corresponds to the actual market value of the property or rights transferred on the day of the transaction. In the case of <a href=\"https:\/\/www.altertax-avocats.com\/contentieux-fiscal\/droits-enregistrement\/cessions-parts\/\">share transfers<\/a>, this basis includes the transfer price plus any charges and indemnities. The tax authorities may question any value that is clearly undervalued, particularly in the case of transactions between related parties, hence the importance of a rigorous, documented valuation.  <\/p><h3>Applicable rates<\/h3><p>Registration duty rates vary according to the nature of the transaction: 5% for standard transfers for valuable consideration and sales of shares in companies with a preponderance of real estate assets, while sales of shares in other companies benefit from a reduced rate of 3% after application of a deduction of 23,000 euros. These different rates, determined by the legal status of your transaction and the nature of the assets involved, have a direct impact on the tax cost of your transactions, and justify a precise analysis of your situation. <\/p><h2>Practical calculation methodology<\/h2><h3>Step 1: Determining taxable value<\/h3><p>First, you need to identify the exact value on which the calculation is based. This value corresponds to the price stipulated in the deed, or the market value if higher. The tax authorities have the right to check this valuation for a period of three years.  <\/p><p>For real estate, you can refer to local market values. Notary databases and comparisons with similar transactions are solid references. Undervaluation exposes you to penalties of up to 40% of the tax evaded. The involvement of qualified <a href=\"https:\/\/www.altertax-avocats.com\/fiscalite\/services-professionnels-comptables\">professionals<\/a> can make this crucial step safer.   <\/p><h3>Step 2: Rate application and duty calculation<\/h3><p>Once the base has been determined, you apply the rate corresponding to the nature of your operation. The calculation is made by simply multiplying the base by the applicable rate. You must then add any additional departmental and municipal taxes.  <\/p><p>For example, for a sale of shares worth 200,000 euros in a property company, the calculation is as follows: 200,000 \u00d7 5% = 10,000 euros in registration fees. This is your minimum tax liability, before any local surcharges. <\/p><p>The taxable value is the higher of the price stipulated in the deed and the actual market value. The tax authorities can check this valuation for three years. For real estate, refer to notary databases and comparable transactions. Under-valuation can result in penalties of up to 40% of the tax evaded.   <\/p><p>Once the base has been determined, multiply it by the applicable rate and add any additional departmental and municipal taxes. For example, for a sale of shares worth 200,000 euros in a property company, the calculation is as follows: 200,000 \u00d7 5% = 10,000 euros in registration fees. <\/p><h2>Special cases and arrangements<\/h2><h3>Allowances and reductions<\/h3><p>Certain situations qualify for tax allowances that reduce the tax base. For sales of company shares, an allowance of 23,000 euros applies to each sale. This allowance applies to each transferring partner and is renewed annually.  <\/p><p>Gifts between members of the same family can also benefit from substantial tax allowances, depending on the family relationship. These measures can significantly optimize the tax cost of your estate transfers. However, you must scrupulously respect the conditions of application to benefit from them.  <\/p><h3>Specific exemptions<\/h3><p>Article 683 provides for total or partial exemptions in certain specific cases. Contributions to companies generally benefit from preferential treatment, with fixed duties of 500 euros or 375 euros depending on the situation. Company reorganizations may also benefit from exemptions under certain conditions.  <\/p><p>These special regimes require compliance with strict conditions, and often the completion of specific formalities. Failure to comply with these conditions may lead to the favorable regime being called into question, and the retroactive application of full duties plus interest for late payment. <\/p><p>For sales of company shares, an allowance of 23,000 euros per transferor and per year applies, significantly reducing the tax base. Gifts between members of the same family also benefit from substantial tax allowances, depending on the family relationship. To be valid, however, these tax-optimization schemes must be scrupulously complied with the legal conditions for their application.  <\/p><p>Certain operations benefit from total or partial exemptions under article 683. Contributions to companies benefit from a preferential regime, with fixed duties of 375 euros or 500 euros depending on the situation, while company reorganizations can also benefit from exemptions under strict conditions. Failure to comply with these conditions means that the favorable regime is called into question, and full duties plus late payment interest are applied retroactively.  <\/p><h2>Reporting obligations and payment<\/h2><h3>Registration formalities<\/h3><p>You must register the deed within the legal deadline, generally one month from the date of signature. This formality is carried out at the relevant tax office or by electronic means. Specific <a href=\"https:\/\/www.altertax-avocats.com\/contentieux-fiscal\/droits-enregistrement\/formulaires\/\">forms<\/a> must be completed accurately.  <\/p><p>Failure to register on time will incur late payment penalties calculated on the fees due. These penalties amount to 0.20% per month of delay, with a minimum of 10% after the first month. Keeping a close eye on deadlines is therefore an essential part of controlling your tax costs.  <\/p><h3>Terms of payment<\/h3><p>Registration fees must be paid at the same time as the deed. You can pay by cheque, bank transfer or <a href=\"https:\/\/www.altertax-avocats.com\/facturation-electronique-comment-adapter-efficacement\/\">electronic payment<\/a>, depending on the tax authorities. For larger amounts, payment facilities can be requested from the tax authorities.  <\/p><p>In the event of financial difficulties, you can request a payment schedule. This request must be justified and accompanied by sufficient guarantees. The tax authorities examine such requests on a case-by-case basis, taking into account your overall financial situation.  <\/p><p>Registration must be made within one month of signing the deed, at the relevant tax office or by electronic means. Specific <a href=\"https:\/\/www.altertax-avocats.com\/contentieux-fiscal\/droits-enregistrement\/formulaires\/\">forms<\/a> must be completed accurately. Any delay will incur penalties of 0.20% per month of delay, with a minimum of 10% after the first month, calculated on the duties due.  <\/p><p>Payment of registration fees is made when the deed is deposited, by cheque, bank transfer or electronic payment. Payment facilities may be requested from the administration in the event of financial difficulties, subject to justification and sufficient guarantees. <\/p><h2>Litigation risks and security<\/h2><h3>Points to watch<\/h3><p>The calculation of registration fees presents several areas of tax risk. The valuation of the taxable base is the first point of control for the tax authorities. You must carefully document the valuation methods used to justify your declarations.  <\/p><p>Applying the right rate and tax regime requires an in-depth legal analysis of your transaction. Incorrect classification can result in significant tax adjustments. Complex arrangements involving several successive operations require particular attention to avoid tax requalification.  <\/p><h3>Support from a tax lawyer<\/h3><p>Faced with the complexities of calculating registration duties, the assistance of a <a href=\"https:\/\/www.altertax-avocats.com\/avocat-contentieux-fiscal\/\">lawyer specialized in tax litigation<\/a> can make your operations more secure. This professional analyzes your situation, identifies possible optimizations and assists you with your tax returns. The <a href=\"https:\/\/www.altertax-avocats.com\/le-secret-professionnel-de-lavocat-fiscaliste-quelles-limites-face-aux-pouvoirs-dinvestigation-de-ladministration-fiscale\/\">professional secrecy<\/a> that binds him or her guarantees total confidentiality of your exchanges and asset information.  <\/p><p>In the event of a tax audit or reassessment, a tax lawyer defends your interests and challenges unjustified tax reassessments. His technical expertise and knowledge of case law are decisive assets in minimizing your tax exposure. The investment you make in this support often pays for itself in the savings you make and the risks you avoid.  <\/p><p>The main risks concern the valuation of the tax base and the application of the correct tax rate. You must carefully document the valuation methods used to justify your declarations to the tax authorities. Incorrect classification can result in a significant tax reassessment and penalties. Carry out an in-depth legal analysis of your transaction to avoid tax recharacterization, particularly in the case of complex arrangements involving several successive transactions.   <\/p><p>The complexity of these calculations may justify the assistance of a <a href=\"https:\/\/www.altertax-avocats.com\/avocat-contentieux-fiscal\/\">tax lawyer<\/a> to secure your operations and optimize your situation.<\/p><h2>Optimize the calculation of your registration fees<\/h2><p>Calculating registration duties in accordance with Article 683 requires a thorough understanding of the tax base, applicable rates and derogatory regimes, to avoid errors and costly adjustments. Anticipate your transactions to identify tax-optimized structures and rigorously document your valuations. To secure your major transactions and take full advantage of legal optimization mechanisms, enlist the support of a specialized consultant right from the preparation phase of your project.  <\/p>\n        <\/div>\n        <div id=\"FAQ-Zloop\">\n        <div>\n<h2>Frequently asked questions<\/h2>\n<p>This section answers the most frequently asked questions about calculating registration fees under Article 683 of the French General Tax Code. Discover the essential elements for understanding and correctly applying this tax provision. <\/p>\n<h3>What is Article 683 of the CGI?<\/h3>\n<p>Article 683 of the French General Tax Code sets out the registration duties applicable to certain legal acts and property transfers. It sets out the rates and methods for calculating duties payable on the registration of civil and commercial deeds. This tax provision applies in particular to transfers of shares, contributions to companies and various asset transactions. The rate and basis of calculation vary according to the nature of the deed and the amount of the transaction. This article is an essential reference for determining the amount of duty to be paid when registering deeds with the tax authorities.    <\/p>\n<h3>How to calculate registration fees under Article 683 of the French General Tax Code?<\/h3>\n<p>Article 683 registration fees are calculated by applying a specific rate to the value of the transaction or deed. The basis of calculation generally corresponds to the sale price, the market value of the property or the amount of the contribution. The rate varies according to the nature of the transaction: it may be proportional or fixed. To calculate the amount of tax due, multiply the tax base by the applicable rate, then add any additional taxes. Deductions or exemptions may apply in certain special cases, notably for business transfers or certain restructurings.    <\/p>\n<h3>How do I calculate registration fees?<\/h3>\n<p>To calculate registration fees correctly, follow these steps: first, identify the legal nature of the deed concerned and check that it falls within the scope of Article 683. Secondly, determine the tax base by assessing the value of the transaction or property concerned. Thirdly, identify the applicable rate according to the category of deed. Fourth, perform the calculation by multiplying the base by the rate. Fifth, check for the existence of any allowances, exemptions or additional taxes. Finally, proceed with payment of the duties calculated at the time of registration of the deed to the appropriate department.     <\/p>\n<h3>What are the applicable rates under Article 683 of the CGI?<\/h3>\n<p>The rates applicable under Article 683 of the CGI depend on the nature of the deed to be registered. For transfers of company shares, the proportional rate is generally 3% after deduction. For certain civil deeds, a fixed fee may apply, ranging from 25 to 125 euros depending on the case. Contributions to companies may benefit from reduced rates or conditional exemptions. It is important to note that these rates may be supplemented by additional local taxes. As tax legislation changes regularly, it is advisable to check the rates in force at the time of the transaction.     <\/p>\n<h3>Are there any tools to help calculate registration fees?<\/h3>\n<p>There are a number of tools available to help you calculate registration fees under Article 683. The tax authorities provide online simulators on the impots.gouv.fr website for certain common transactions. Legal and tax management software often incorporate automated registration duty calculation modules. Notaries and tax lawyers use specialized professional tools to guarantee accurate calculations. For complex or atypical transactions, it is preferable to consult a tax law professional who will be able to analyze your specific situation and make a personalized calculation while optimizing your tax burden.    <\/p>\n<h3>When should a tax lawyer be called in to help with Article 683 of the CGI?<\/h3>\n<p>It is advisable to consult a tax lawyer for complex transactions involving large sums of money or particular legal structures. Business restructuring, family transfers and asset structuring all require in-depth expertise to optimize taxation and avoid costly mistakes. A tax lawyer can help you analyze your situation, calculate the precise amount of tax due, identify applicable tax optimization measures, and ensure the legal security of your operations. His intervention is particularly valuable in the event of a tax dispute or a <a href=\"https:\/\/www.altertax-avocats.com\/loi-de-finances-2024-controle-fiscal-prix-de-transfert\/\">tax audit<\/a> by the tax authorities, ensuring that your interests are defended.   <\/p>\n<\/div>\n        <\/div>\n        <div class=\"arianezloopglobale\">\n        <h2 class=\"articlesConnexesZloop\">Related articles<\/h2>\n        <div id=\"arianezloop\">\n            <p><a href=\"https:\/\/www.altertax-avocats.com\/contentieux-fiscal\/\"><span class=\"parentarianezloop\">Tax Litigation<\/span><\/a><\/p><p><a href=\"https:\/\/www.altertax-avocats.com\/contentieux-fiscal\/droits-enregistrement\/\"><span class=\"parentarianezloop\">Registration fees<\/span><\/a><\/p>\n            <div id=\"ariane-enfant\">\n            <p><a href=\"https:\/\/www.altertax-avocats.com\/contentieux-fiscal\/droits-enregistrement\/calcul-droits-enregistrement-683\/\"><span class=\"parentarianezloop\">Calculation Registration duties 683<\/span><\/a><\/p>\n            <ul>\n            \n            <\/ul>\n            <\/div>\n            <\/div>\n        <\/div>\n        \n","protected":false},"excerpt":{"rendered":"<p>Calculating registration duties in accordance with Article 683 of the French General Tax Code (CGI) Registration duty simulator &#8211; Article 683 CGI Calculate your registration fees according to your transaction Type of transaction : Standard transfer for valuable considerationSale of shares &#8211; Preponderantly real estate companySale of shares &#8211; Other company Transaction value (\u20ac) : [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_et_pb_use_builder":"","_et_pb_old_content":"","_et_gb_content_width":"","footnotes":""},"categories":[384],"tags":[],"class_list":["post-8657","post","type-post","status-publish","format-standard","hentry","category-litigation"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Calculating 683 registration fees: a practical guide - Altertax Avocats<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.altertax-avocats.com\/en\/calculating-683-registration-fees-a-practical-guide\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Calculating 683 registration fees: a practical guide - Altertax Avocats\" \/>\n<meta property=\"og:description\" content=\"Calculating registration duties in accordance with Article 683 of the French General Tax Code (CGI) Registration duty simulator &#8211; Article 683 CGI Calculate your registration fees according to your transaction Type of transaction : Standard transfer for valuable considerationSale of shares &#8211; Preponderantly real estate companySale of shares &#8211; Other company Transaction value (\u20ac) : [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.altertax-avocats.com\/en\/calculating-683-registration-fees-a-practical-guide\/\" \/>\n<meta property=\"og:site_name\" content=\"Altertax Avocats\" \/>\n<meta property=\"article:published_time\" content=\"2026-03-05T10:11:30+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.altertax-avocats.com\/wp-content\/uploads\/2024\/03\/altertax-avocats-logo-black-full.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1009\" \/>\n\t<meta property=\"og:image:height\" content=\"286\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Equipe de AlterTax Avocats\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Equipe de AlterTax Avocats\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"12 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.altertax-avocats.com\\\/en\\\/calculating-683-registration-fees-a-practical-guide\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.altertax-avocats.com\\\/en\\\/calculating-683-registration-fees-a-practical-guide\\\/\"},\"author\":{\"name\":\"Equipe de AlterTax Avocats\",\"@id\":\"https:\\\/\\\/www.altertax-avocats.com\\\/en\\\/#\\\/schema\\\/person\\\/bbfb0f93f3e05c30485cf20fa2dff731\"},\"headline\":\"Calculating 683 registration fees: a practical guide\",\"datePublished\":\"2026-03-05T10:11:30+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.altertax-avocats.com\\\/en\\\/calculating-683-registration-fees-a-practical-guide\\\/\"},\"wordCount\":2359,\"publisher\":{\"@id\":\"https:\\\/\\\/www.altertax-avocats.com\\\/en\\\/#organization\"},\"articleSection\":[\"Litigation\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.altertax-avocats.com\\\/en\\\/calculating-683-registration-fees-a-practical-guide\\\/\",\"url\":\"https:\\\/\\\/www.altertax-avocats.com\\\/en\\\/calculating-683-registration-fees-a-practical-guide\\\/\",\"name\":\"Calculating 683 registration fees: a practical guide - Altertax Avocats\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.altertax-avocats.com\\\/en\\\/#website\"},\"datePublished\":\"2026-03-05T10:11:30+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.altertax-avocats.com\\\/en\\\/calculating-683-registration-fees-a-practical-guide\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.altertax-avocats.com\\\/en\\\/calculating-683-registration-fees-a-practical-guide\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.altertax-avocats.com\\\/en\\\/calculating-683-registration-fees-a-practical-guide\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Accueil\",\"item\":\"https:\\\/\\\/www.altertax-avocats.com\\\/en\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Calculating 683 registration fees: a practical guide\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.altertax-avocats.com\\\/en\\\/#website\",\"url\":\"https:\\\/\\\/www.altertax-avocats.com\\\/en\\\/\",\"name\":\"Altertax Avocats\",\"description\":\"Avocats Fiscalistes Paris, Droit Fiscal\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.altertax-avocats.com\\\/en\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.altertax-avocats.com\\\/en\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.altertax-avocats.com\\\/en\\\/#organization\",\"name\":\"ALTERTAX\",\"alternateName\":\"AlterTax Avocats\",\"url\":\"https:\\\/\\\/www.altertax-avocats.com\\\/en\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.altertax-avocats.com\\\/en\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.altertax-avocats.com\\\/wp-content\\\/uploads\\\/2024\\\/01\\\/logo-emblem-altertax-avocats.png\",\"contentUrl\":\"https:\\\/\\\/www.altertax-avocats.com\\\/wp-content\\\/uploads\\\/2024\\\/01\\\/logo-emblem-altertax-avocats.png\",\"width\":912,\"height\":672,\"caption\":\"ALTERTAX\"},\"image\":{\"@id\":\"https:\\\/\\\/www.altertax-avocats.com\\\/en\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.linkedin.com\\\/company\\\/altertax-avocats\\\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.altertax-avocats.com\\\/en\\\/#\\\/schema\\\/person\\\/bbfb0f93f3e05c30485cf20fa2dff731\",\"name\":\"Equipe de AlterTax Avocats\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/8ed93df48bf80b68ecf1c66be3eb65c16a34c10d761d8160949214a7913d5907?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/8ed93df48bf80b68ecf1c66be3eb65c16a34c10d761d8160949214a7913d5907?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/8ed93df48bf80b68ecf1c66be3eb65c16a34c10d761d8160949214a7913d5907?s=96&d=mm&r=g\",\"caption\":\"Equipe de AlterTax Avocats\"},\"description\":\"Avec 25 ans d'exp\u00e9rience en droit fiscal, notamment dans de grands cabinets fran\u00e7ais et internationaux, je fournis des conseils sur-mesure en fiscalit\u00e9. Ma passion et mon implication me permettent d'accompagner efficacement les entreprises fran\u00e7aises dans leur expansion internationale, ainsi que les groupes \u00e9trangers et multinationales dans leurs op\u00e9rations transfrontali\u00e8res et de r\u00e9organisation. Je conseille \u00e9galement les personnes physiques pour la gestion de leur patrimoine et leur planification successorale. Mon expertise s'\u00e9tend au contentieux fiscal devant les juridictions administratives et civiles.\",\"sameAs\":[\"https:\\\/\\\/www.altertax-avocats.com\",\"https:\\\/\\\/www.linkedin.com\\\/in\\\/cyril-maucour\\\/\"],\"url\":\"https:\\\/\\\/www.altertax-avocats.com\\\/notre-equipe\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Calculating 683 registration fees: a practical guide - Altertax Avocats","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.altertax-avocats.com\/en\/calculating-683-registration-fees-a-practical-guide\/","og_locale":"en_US","og_type":"article","og_title":"Calculating 683 registration fees: a practical guide - Altertax Avocats","og_description":"Calculating registration duties in accordance with Article 683 of the French General Tax Code (CGI) Registration duty simulator &#8211; Article 683 CGI Calculate your registration fees according to your transaction Type of transaction : Standard transfer for valuable considerationSale of shares &#8211; Preponderantly real estate companySale of shares &#8211; Other company Transaction value (\u20ac) : [&hellip;]","og_url":"https:\/\/www.altertax-avocats.com\/en\/calculating-683-registration-fees-a-practical-guide\/","og_site_name":"Altertax Avocats","article_published_time":"2026-03-05T10:11:30+00:00","og_image":[{"width":1009,"height":286,"url":"https:\/\/www.altertax-avocats.com\/wp-content\/uploads\/2024\/03\/altertax-avocats-logo-black-full.png","type":"image\/png"}],"author":"Equipe de AlterTax Avocats","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Equipe de AlterTax Avocats","Est. reading time":"12 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.altertax-avocats.com\/en\/calculating-683-registration-fees-a-practical-guide\/#article","isPartOf":{"@id":"https:\/\/www.altertax-avocats.com\/en\/calculating-683-registration-fees-a-practical-guide\/"},"author":{"name":"Equipe de AlterTax Avocats","@id":"https:\/\/www.altertax-avocats.com\/en\/#\/schema\/person\/bbfb0f93f3e05c30485cf20fa2dff731"},"headline":"Calculating 683 registration fees: a practical guide","datePublished":"2026-03-05T10:11:30+00:00","mainEntityOfPage":{"@id":"https:\/\/www.altertax-avocats.com\/en\/calculating-683-registration-fees-a-practical-guide\/"},"wordCount":2359,"publisher":{"@id":"https:\/\/www.altertax-avocats.com\/en\/#organization"},"articleSection":["Litigation"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.altertax-avocats.com\/en\/calculating-683-registration-fees-a-practical-guide\/","url":"https:\/\/www.altertax-avocats.com\/en\/calculating-683-registration-fees-a-practical-guide\/","name":"Calculating 683 registration fees: a practical guide - Altertax Avocats","isPartOf":{"@id":"https:\/\/www.altertax-avocats.com\/en\/#website"},"datePublished":"2026-03-05T10:11:30+00:00","breadcrumb":{"@id":"https:\/\/www.altertax-avocats.com\/en\/calculating-683-registration-fees-a-practical-guide\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.altertax-avocats.com\/en\/calculating-683-registration-fees-a-practical-guide\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.altertax-avocats.com\/en\/calculating-683-registration-fees-a-practical-guide\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https:\/\/www.altertax-avocats.com\/en\/"},{"@type":"ListItem","position":2,"name":"Calculating 683 registration fees: a practical guide"}]},{"@type":"WebSite","@id":"https:\/\/www.altertax-avocats.com\/en\/#website","url":"https:\/\/www.altertax-avocats.com\/en\/","name":"Altertax Avocats","description":"Avocats Fiscalistes Paris, Droit Fiscal","publisher":{"@id":"https:\/\/www.altertax-avocats.com\/en\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.altertax-avocats.com\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.altertax-avocats.com\/en\/#organization","name":"ALTERTAX","alternateName":"AlterTax Avocats","url":"https:\/\/www.altertax-avocats.com\/en\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.altertax-avocats.com\/en\/#\/schema\/logo\/image\/","url":"https:\/\/www.altertax-avocats.com\/wp-content\/uploads\/2024\/01\/logo-emblem-altertax-avocats.png","contentUrl":"https:\/\/www.altertax-avocats.com\/wp-content\/uploads\/2024\/01\/logo-emblem-altertax-avocats.png","width":912,"height":672,"caption":"ALTERTAX"},"image":{"@id":"https:\/\/www.altertax-avocats.com\/en\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.linkedin.com\/company\/altertax-avocats\/"]},{"@type":"Person","@id":"https:\/\/www.altertax-avocats.com\/en\/#\/schema\/person\/bbfb0f93f3e05c30485cf20fa2dff731","name":"Equipe de AlterTax Avocats","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/8ed93df48bf80b68ecf1c66be3eb65c16a34c10d761d8160949214a7913d5907?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/8ed93df48bf80b68ecf1c66be3eb65c16a34c10d761d8160949214a7913d5907?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/8ed93df48bf80b68ecf1c66be3eb65c16a34c10d761d8160949214a7913d5907?s=96&d=mm&r=g","caption":"Equipe de AlterTax Avocats"},"description":"Avec 25 ans d'exp\u00e9rience en droit fiscal, notamment dans de grands cabinets fran\u00e7ais et internationaux, je fournis des conseils sur-mesure en fiscalit\u00e9. Ma passion et mon implication me permettent d'accompagner efficacement les entreprises fran\u00e7aises dans leur expansion internationale, ainsi que les groupes \u00e9trangers et multinationales dans leurs op\u00e9rations transfrontali\u00e8res et de r\u00e9organisation. Je conseille \u00e9galement les personnes physiques pour la gestion de leur patrimoine et leur planification successorale. Mon expertise s'\u00e9tend au contentieux fiscal devant les juridictions administratives et civiles.","sameAs":["https:\/\/www.altertax-avocats.com","https:\/\/www.linkedin.com\/in\/cyril-maucour\/"],"url":"https:\/\/www.altertax-avocats.com\/notre-equipe\/"}]}},"_links":{"self":[{"href":"https:\/\/www.altertax-avocats.com\/en\/wp-json\/wp\/v2\/posts\/8657","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.altertax-avocats.com\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.altertax-avocats.com\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.altertax-avocats.com\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.altertax-avocats.com\/en\/wp-json\/wp\/v2\/comments?post=8657"}],"version-history":[{"count":0,"href":"https:\/\/www.altertax-avocats.com\/en\/wp-json\/wp\/v2\/posts\/8657\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.altertax-avocats.com\/en\/wp-json\/wp\/v2\/media?parent=8657"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.altertax-avocats.com\/en\/wp-json\/wp\/v2\/categories?post=8657"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.altertax-avocats.com\/en\/wp-json\/wp\/v2\/tags?post=8657"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}