 {"id":8732,"date":"2026-03-05T11:12:08","date_gmt":"2026-03-05T10:12:08","guid":{"rendered":"https:\/\/www.altertax-avocats.com\/683-registration-fee-calculation-avoid-errors\/"},"modified":"2026-03-05T11:12:08","modified_gmt":"2026-03-05T10:12:08","slug":"683-registration-fee-calculation-avoid-errors","status":"publish","type":"post","link":"https:\/\/www.altertax-avocats.com\/en\/683-registration-fee-calculation-avoid-errors\/","title":{"rendered":"683 registration fee calculation: avoid errors"},"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=\"sim-container\">\n<h3 class=\"sim-title\">\ud83e\uddee Registration duty simulator (Article 683 CGI)<\/h3>\n<div class=\"sim-section\">\n<label class=\"sim-label\">Type of operation :<\/label>\n<div class=\"sim-radio-group\">\n<label class=\"sim-radio-option\">\n<input checked id=\"radio-immobilier\" name=\"operationType\" type=\"radio\" value=\"immobilier\">\n<span>Direct real estate transfer<\/span>\n<\/label>\n<label class=\"sim-radio-option\">\n<input id=\"radio-spi\" name=\"operationType\" type=\"radio\" value=\"spi\">\n<span>Shares in property companies (SPI)<\/span>\n<\/label>\n<label class=\"sim-radio-option\">\n<input id=\"radio-non-immobilier\" name=\"operationType\" type=\"radio\" value=\"non-immobilier\">\n<span>Non-property company shares<\/span>\n<\/label>\n<\/div>\n<\/div>\n<div class=\"sim-section\">\n<label class=\"sim-label\" for=\"prix-vente\">Sale or transfer price (\u20ac) :<\/label>\n<input class=\"sim-input\" id=\"prix-vente\" min=\"0\" step=\"1000\" type=\"number\" value=\"300000\">\n<\/div>\n<div class=\"sim-section\">\n<label class=\"sim-label\" for=\"charges\">Expenses and incidentals (\u20ac) :<\/label>\n<input class=\"sim-input\" id=\"charges\" min=\"0\" step=\"100\" type=\"number\" value=\"5000\">\n<\/div>\n<button class=\"sim-button\" onclick=\"window.calculateDroits()\">Calculate rights<\/button>\n<div class=\"sim-results\" id=\"sim-results\" style=\"display: none;\">\n<h4 class=\"sim-results-title\">\ud83d\udcca Calculation results<\/h4>\n<div class=\"sim-result-row\">\n<span class=\"sim-result-label\">Main price :<\/span>\n<span class=\"sim-result-value\" id=\"result-prix\">0 \u20ac<\/span>\n<\/div>\n<div class=\"sim-result-row\">\n<span class=\"sim-result-label\">Charges and accessories :<\/span>\n<span class=\"sim-result-value\" id=\"result-charges\">0 \u20ac<\/span>\n<\/div>\n<div class=\"sim-result-row subtotal\">\n<span class=\"sim-result-label\">Gross base :<\/span>\n<span class=\"sim-result-value\" id=\"result-base-brute\">0 \u20ac<\/span>\n<\/div>\n<div class=\"sim-result-row abatement\" id=\"row-abatement\" style=\"display: none;\">\n<span class=\"sim-result-label\">Allowance :<\/span>\n<span class=\"sim-result-value\" id=\"result-abatement\">0 \u20ac<\/span>\n<\/div>\n<div class=\"sim-result-row subtotal\">\n<span class=\"sim-result-label\">Tax base :<\/span>\n<span class=\"sim-result-value\" id=\"result-base-imposable\">0 \u20ac<\/span>\n<\/div>\n<div class=\"sim-result-row\">\n<span class=\"sim-result-label\">Applicable rate :<\/span>\n<span class=\"sim-result-value\" id=\"result-taux\">0%<\/span>\n<\/div>\n<div class=\"sim-result-row total\">\n<span class=\"sim-result-label\"><strong>Registration fees :<\/strong><\/span>\n<span class=\"sim-result-value\"><strong id=\"result-droits\">0 \u20ac<\/strong><\/span>\n<\/div>\n<div class=\"sim-info-box\">\n<p id=\"result-info-text\">Calculation information<\/p>\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n<script type=\"text\/javascript\">\nwindow.calculateDroits = function() {\n    \/\/ Get input values\n    const prixVente = parseFloat(document.getElementById('prix-vente').value) || 0;\n    const charges = parseFloat(document.getElementById('charges').value) || 0;\n    \n    \/\/ Get selected operation type\n    let operationType = 'immobilier';\n    if (document.getElementById('radio-spi').checked) {\n        operationType = 'spi';\n    } else if (document.getElementById('radio-non-immobilier').checked) {\n        operationType = 'non-immobilier';\n    }\n    \n    \/\/ Calculate base brute\n    const baseBrute = prixVente + charges;\n    \n    \/\/ Determine rate and abatement based on operation type\n    let taux = 0;\n    let abattement = 0;\n    let infoText = '';\n    \n    if (operationType === 'immobilier') {\n        taux = 5.80;\n        abattement = 0;\n        infoText = 'Mutation immobili\u00e8re directe : taux standard de 5,80% sans abattement.';\n    } else if (operationType === 'spi') {\n        taux = 5.00;\n        abattement = 0;\n        infoText = 'Parts de soci\u00e9t\u00e9 \u00e0 pr\u00e9pond\u00e9rance immobili\u00e8re : taux de 5% avec abattement proportionnel (non calcul\u00e9 dans ce simulateur simplifi\u00e9).';\n    } else if (operationType === 'non-immobilier') {\n        taux = 3.00;\n        abattement = 23000;\n        infoText = 'Parts de soci\u00e9t\u00e9 non immobili\u00e8re : taux r\u00e9duit de 3% apr\u00e8s abattement forfaitaire de 23 000 \u20ac.';\n    }\n    \n    \/\/ Calculate imposable base\n    const baseImposable = Math.max(0, baseBrute - abattement);\n    \n    \/\/ Calculate registration fees\n    const droits = baseImposable * (taux \/ 100);\n    \n    \/\/ Display results\n    document.getElementById('result-prix').textContent = formatNumber(prixVente) + ' \u20ac';\n    document.getElementById('result-charges').textContent = formatNumber(charges) + ' \u20ac';\n    document.getElementById('result-base-brute').textContent = formatNumber(baseBrute) + ' \u20ac';\n    document.getElementById('result-base-imposable').textContent = formatNumber(baseImposable) + ' \u20ac';\n    document.getElementById('result-taux').textContent = taux.toFixed(2) + '%';\n    document.getElementById('result-droits').textContent = formatNumber(droits) + ' \u20ac';\n    document.getElementById('result-info-text').textContent = infoText;\n    \n    \/\/ Show\/hide abatement row\n    const abatementRow = document.getElementById('row-abatement');\n    if (abattement > 0) {\n        abatementRow.style.display = 'flex';\n        document.getElementById('result-abatement').textContent = '- ' + formatNumber(abattement) + ' \u20ac';\n    } else {\n        abatementRow.style.display = 'none';\n    }\n    \n    \/\/ Show results section\n    document.getElementById('sim-results').style.display = 'block';\n    \n    \/\/ Smooth scroll to results\n    const resultsElement = document.getElementById('sim-results');\n    if (resultsElement) {\n        resultsElement.scrollIntoView({ behavior: 'smooth', block: 'nearest' });\n    }\n};\n\nfunction formatNumber(num) {\n    return num.toFixed(2).replace(\/B(?=(d{3})+(?!d))\/g, ' ');\n}\n\n\/\/ Allow Enter key to trigger calculation\ndocument.addEventListener('DOMContentLoaded', function() {\n    const inputs = document.querySelectorAll('#droits-enregistrement-simulator input[type=\"number\"]');\n    inputs.forEach(function(input) {\n        input.addEventListener('keypress', function(e) {\n            if (e.key === 'Enter') {\n                window.calculateDroits();\n            }\n        });\n    });\n});\n<\/script>\n<style type=\"text\/css\">\n.simulator-wrapper {\n    font-family: Poppins, sans-serif;\n    max-width: 700px;\n    margin: 20px auto;\n    padding: 0;\n}\n\n.sim-container {\n    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);\n    border-radius: 12px;\n    padding: 30px;\n    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);\n}\n\n.sim-title {\n    color: white;\n    font-size: 24px;\n    margin: 0 0 25px 0;\n    text-align: center;\n    font-weight: 600;\n}\n\n.sim-section {\n    background: white;\n    border-radius: 8px;\n    padding: 20px;\n    margin-bottom: 15px;\n}\n\n.sim-label {\n    display: block;\n    font-weight: 600;\n    color: #333;\n    margin-bottom: 10px;\n    font-size: 14px;\n}\n\n.sim-radio-group {\n    display: flex;\n    flex-direction: column;\n    gap: 10px;\n}\n\n.sim-radio-option {\n    display: flex;\n    align-items: center;\n    cursor: pointer;\n    padding: 10px;\n    border-radius: 6px;\n    transition: background-color 0.2s;\n}\n\n.sim-radio-option:hover {\n    background-color: #f5f5f5;\n}\n\n.sim-radio-option input[type=\"radio\"] {\n    margin-right: 10px;\n    cursor: pointer;\n    width: 18px;\n    height: 18px;\n}\n\n.sim-radio-option span {\n    font-size: 14px;\n    color: #555;\n}\n\n.sim-input {\n    width: 100%;\n    padding: 12px;\n    border: 2px solid #e0e0e0;\n    border-radius: 6px;\n    font-size: 16px;\n    box-sizing: border-box;\n    transition: border-color 0.3s;\n}\n\n.sim-input:focus {\n    outline: none;\n    border-color: #667eea;\n}\n\n.sim-button {\n    width: 100%;\n    padding: 15px;\n    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);\n    color: white;\n    border: none;\n    border-radius: 8px;\n    font-size: 16px;\n    font-weight: 600;\n    cursor: pointer;\n    transition: transform 0.2s, box-shadow 0.2s;\n    margin-top: 10px;\n}\n\n.sim-button:hover {\n    transform: translateY(-2px);\n    box-shadow: 0 5px 15px rgba(245, 87, 108, 0.4);\n}\n\n.sim-button:active {\n    transform: translateY(0);\n}\n\n.sim-results {\n    background: white;\n    border-radius: 8px;\n    padding: 25px;\n    margin-top: 20px;\n    animation: slideIn 0.4s ease-out;\n}\n\n@keyframes slideIn {\n    from {\n        opacity: 0;\n        transform: translateY(-10px);\n    }\n    to {\n        opacity: 1;\n        transform: translateY(0);\n    }\n}\n\n.sim-results-title {\n    color: #667eea;\n    font-size: 20px;\n    margin: 0 0 20px 0;\n    text-align: center;\n    font-weight: 600;\n}\n\n.sim-result-row {\n    display: flex;\n    justify-content: space-between;\n    padding: 12px 0;\n    border-bottom: 1px solid #f0f0f0;\n}\n\n.sim-result-row.subtotal {\n    background-color: #f9f9f9;\n    padding: 12px 10px;\n    margin: 5px -10px;\n    border-radius: 4px;\n    border-bottom: none;\n}\n\n.sim-result-row.abatement {\n    color: #28a745;\n    font-weight: 500;\n}\n\n.sim-result-row.total {\n    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);\n    color: white;\n    padding: 15px 10px;\n    margin: 15px -10px 0 -10px;\n    border-radius: 6px;\n    font-size: 18px;\n    border-bottom: none;\n}\n\n.sim-result-label {\n    color: #555;\n    font-size: 14px;\n}\n\n.sim-result-row.total .sim-result-label {\n    color: white;\n}\n\n.sim-result-value {\n    font-weight: 600;\n    color: #333;\n    font-size: 14px;\n}\n\n.sim-result-row.total .sim-result-value {\n    color: white;\n}\n\n.sim-info-box {\n    background-color: #e8f4f8;\n    border-left: 4px solid #667eea;\n    padding: 15px;\n    margin-top: 20px;\n    border-radius: 4px;\n}\n\n.sim-info-box p {\n    margin: 0;\n    color: #555;\n    font-size: 13px;\n    line-height: 1.5;\n}\n\n@media (max-width: 600px) {\n    .sim-container {\n        padding: 20px;\n    }\n    \n    .sim-title {\n        font-size: 20px;\n    }\n    \n    .sim-section {\n        padding: 15px;\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) defines the basis and calculation methods for registration duties applicable to transfers of ownership, sales of company shares and notarial deeds. This text establishes that duties are calculated by applying a specific rate (5.80% for transfers of real estate, 5% for companies with a preponderance of real estate assets, 3% for other share transfers) to the real market value of the property or rights transferred, increased by charges and accessories. The precise determination of this taxable base directly determines the amount of duty payable and the tax compliance of the transaction.  <\/p><h2>What is the calculation of registration fees under article 683?<\/h2><p><a href=\"https:\/\/www.altertax-avocats.com\/contentieux-fiscal\/droits-enregistrement\/683-cgi\/\">Article 683 of the French General Tax Code (CGI)<\/a> sets out the rules for determining the taxable value used to calculate registration duties on transfers of ownership and legal acts. Unlike articles 682 (which sets the applicable rates) and 684 (which deals with exemptions), article 683 specifies that the taxable value corresponds to the price expressed in the deed, plus capital charges and indemnities stipulated for the benefit of the transferor. For sales of company shares, this value is used as the basis for applying a rate of 3% after allowance for non-property companies, or 5% for companies with a preponderance of real estate assets, while real estate transfers are subject to the standard rate of 5.80% without a <a href=\"https:\/\/www.altertax-avocats.com\/impot-forfaitaire\/\">flat-rate<\/a> allowance.  <\/p><h2>Components of the calculation basis<\/h2><p>Determining the <a href=\"https:\/\/www.altertax-avocats.com\/base-dimposition\/\">tax base<\/a> is the first stage in calculating registration duties, and corresponds to the actual market value of the property or rights transferred on the day of the transaction. In the case of real estate, the basis is the sale price stipulated in the deed, plus any charges and indemnities. For example, a property sold for \u20ac200,000, with \u20ac10,000 in charges, generates a tax base of \u20ac210,000. For <a href=\"https:\/\/www.altertax-avocats.com\/contentieux-fiscal\/droits-enregistrement\/cessions-parts\/\">sales of shares<\/a>, the tax base corresponds to the price agreed between the parties. The calculation formula is as follows Taxable base = Principal price + Expenses + Accessories &#8211; Any deductible <a href=\"https:\/\/www.altertax-avocats.com\/les-dettes-deductibles-au-titre-de-l-ifi\/\">debts<\/a>.    <\/p><h3>Loads and accessories to integrate<\/h3><p>The calculation must include the following in addition to the principal price: <a href=\"https:\/\/www.altertax-avocats.com\/frais-reels-deductibles\/\">actual deductible brokerage fees<\/a>, intermediary commissions, any balancing payments and ancillary indemnities. Debts on the property may be deducted from the <a href=\"https:\/\/www.altertax-avocats.com\/benefice-net-imposable\/\">taxable amount<\/a> when the purchaser assumes them, thus enabling duty to be calculated on the net value transferred. <\/p><h2>The rates applicable under article 683<\/h2><p>Article 683 of the CGI does not set the rates directly, but sets out the calculation methods and refers to specific provisions depending on the nature of the transaction. The rates vary significantly depending on whether the transaction is a transfer of real estate or a transfer of shares. For transfers of real estate for valuable consideration, the standard rate is 5.80% (or 5.09% in certain d\u00e9partements), broken down into departmental duties (4.50%), communal taxes (1.20%) and levies for assessment and collection costs (2.37% of departmental duties).  <\/p>\n<table>\n<thead>\n<tr>\n<th>Type of operation<\/th>\n<th>Applicable rate<\/th>\n<th>Allowance<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>Real estate transfers<\/td>\n<td>5.80% (or 5.09%)<\/td>\n<td>&#8211;<\/td>\n<\/tr>\n<tr>\n<td>Shares in real estate companies<\/td>\n<td>5%<\/td>\n<td>Proportional<\/td>\n<\/tr>\n<tr>\n<td>Shares in non-property companies<\/td>\n<td>3%<\/td>\n<td>23 000\u20ac<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>For sales of company shares, the system differs according to the composition of the company&#8217;s assets. Companies with a preponderance of real estate assets are subject to a rate of 5% after application of a proportional <a href=\"https:\/\/www.altertax-avocats.com\/abattement-fiscal\/\">allowance<\/a>. Sales of shares in non-property companies are subject to a reduced rate of 3%, after a flat-rate allowance of \u20ac23,000 per sale. This distinction requires a precise analysis of the composition of the company&#8217;s assets to determine the applicable regime.   <\/p><h3>Applicable allowances and reductions<\/h3><p>For sales of shares governed by article 683, a flat-rate allowance of \u20ac23,000 is applied to the sale price before calculating tax, in accordance with article 730 of the CGI. This allowance directly reduces the tax base: for a sale of \u20ac50,000, only \u20ac27,000 is subject to the <a href=\"https:\/\/www.altertax-avocats.com\/taux-effectif-dimposition\/\">effective tax rate<\/a> of 3%. It is important to distinguish this tax allowance from the tax reductions that apply after the amount due has been calculated. The allowance applies per sale and not per share sold, which influences the structuring of transactions. Eligibility conditions include, in particular, that the shares are not listed on the stock exchange and that the company is not predominantly real estate-owned, in which case the Article 683 regime applies with different terms and conditions.    <\/p><h2>The step-by-step calculation procedure<\/h2><p>The practical calculation of <a href=\"https:\/\/www.altertax-avocats.com\/droits-denregistrement\/\">registration fees<\/a> follows a simple formula: (Value of the property + charges and incidental expenses &#8211; any allowances) x <a href=\"https:\/\/www.altertax-avocats.com\/taux-marginal-dimposition\/\">Applicable rate<\/a> = Amount of fees. For example, for a property worth \u20ac300,000 with \u20ac5,000 in ancillary costs, the taxable base is \u20ac305,000. Applying the standard rate of 5.80%, the amount of duty would be \u20ac17,690. This method guarantees a precise calculation that complies with the requirements of article 683 of the CGI.   <\/p><h3>Tools and resources to make calculations easier<\/h3><p>The tax authorities provide the Cerfa <a href=\"https:\/\/www.altertax-avocats.com\/contentieux-fiscal\/droits-enregistrement\/formulaires\/\">forms<\/a> needed to declare registration duties, in particular form 2759 for share transfers and form 2735 for real estate transfers, available on the impots.gouv.fr website.<\/p><h2>Common calculation errors to avoid<\/h2><p>The most common errors in calculating registration duties include: omission of items from the tax base (ancillary charges, balancing payments, indemnities), confusion between the rates applicable to different types of transaction, undervaluation of assets transferred, and errors in the classification of <a href=\"https:\/\/www.altertax-avocats.com\/impot-sur-les-societes\/\">companies<\/a> with a preponderance of real estate assets. In the event of failure to comply, the taxpayer is liable to a tax reassessment within three years (six years in the case of fraud), together with late payment interest of 0.20% per month and penalties ranging from 10% to 40% of the duties evaded, depending on the seriousness of the facts. Insufficient calculation or application of an inappropriate rate leads either to a reminder of duties with penalties, or to overpayment without automatic reimbursement.  <\/p><h3>The consequences of miscalculation<\/h3><p>An insufficient calculation exposes the taxpayer to an adjustment within three years of registration, with late payment interest of 0.20% per month. Penalties vary according to severity: 10% for simple delay, 40% for deliberate failure to comply, and up to 80% for fraudulent maneuvers. These penalties add considerably to the final <a href=\"https:\/\/www.altertax-avocats.com\/charge-fiscale-totale\/\">tax burden<\/a>, and can lead to <a href=\"https:\/\/www.altertax-avocats.com\/contentieux-fiscal\/\">tax litigation<\/a> requiring the intervention of a specialist lawyer.  <\/p><h2>Specific features for different types of operation<\/h2><p>Article 683 of the French General Tax Code establishes distinct calculation regimes depending on the nature of the transaction. Direct transfers of real estate are subject to a standard rate of 5.80% on the sale price plus expenses. Sales of company shares are subject to different rules: companies with a preponderance of real estate assets (more than 50% of which is made up of real estate not used in the business) are subject to a rate of 5% after allowance, while other companies benefit from a reduced rate of 3%. This distinction has a significant impact on tax costs, and is a key factor in<a href=\"https:\/\/www.altertax-avocats.com\/optimisation-fiscale\/\">tax optimization<\/a> when structuring wealth management operations.   <\/p>\n<table>\n<thead>\n<tr>\n<th>Type of operation<\/th>\n<th>Applicable rate<\/th>\n<th>Calculation basis<\/th>\n<th>Special features<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>Direct real estate<\/td>\n<td>5,80%<\/td>\n<td>Price + charges<\/td>\n<td>Standard departmental rate<\/td>\n<\/tr>\n<tr>\n<td>SPI shares (\u226550% real estate)<\/td>\n<td>5%<\/td>\n<td>Price after allowance<\/td>\n<td>Asset classification<\/td>\n<\/tr>\n<tr>\n<td>Shares in non-property companies<\/td>\n<td>3%<\/td>\n<td>Price after allowance<\/td>\n<td>Favorable reduced rate<\/td>\n<\/tr>\n<\/tbody>\n<\/table><h3>Special cases requiring expertise<\/h3><p>The main difficulty in applying article 683 concerns the qualification of companies with a preponderance of real estate assets. This classification is based on an objective criterion: the company&#8217;s assets must comprise more than 50% of real estate assets or rights not allocated to the business. Precise assessment of this threshold requires in-depth accounting and legal analysis, in particular to determine whether certain assets (building land, buildings under construction, holdings in real estate companies) should be included in the calculation.  <\/p><h2>Tax optimization within the law<\/h2><p>Article 683 offers scope for legal optimization, depending on the structuring chosen. For a real estate sale of \u20ac500,000, the direct sale generates duties of \u20ac29,000 (5.80%), whereas a sale of shares in a non-real estate company after allowance costs only \u20ac14,550 (3% after allowance of \u20ac23,000). This difference of \u20ac14,450 justifies a prior analysis of the optimal legal structure.  <\/p><p>In order to benefit from the reduced rate of 3% for sales of shares, the company must not have a majority of real estate assets (real estate assets less than 50% of total assets). For companies with a majority of real estate assets, the 5% rate applies after a tax allowance, which is still more advantageous than direct sales. Optimization also involves anticipating taxable <a href=\"https:\/\/www.altertax-avocats.com\/impot-sur-les-plusvalues\/\">capital gains<\/a> and planning the timing of transactions to maximize available allowances.  <\/p><h2>Mastering calculations to secure your operations<\/h2><p>The calculation of registration fees under article 683 of the CGI is based on a precise formula: (Value + <a href=\"https:\/\/www.altertax-avocats.com\/charges-deductibles\/\">Expenses<\/a> &#8211; Allowances) \u00d7 Applicable rate. Rigorous determination of each element of this formula guarantees tax compliance and avoids any risk of <a href=\"https:\/\/www.altertax-avocats.com\/redressement-fiscal\/\">tax reassessment<\/a>. Particular attention must be paid to the full integration of ancillary expenses and the application of the rate corresponding to the exact nature of the transaction. For the most up-to-date information on rates and terms and conditions, consult the official website of the French tax authorities.   <\/p>\n        <\/div>\n        <div id=\"FAQ-Zloop\">\n        <div>\n<h2>Frequently asked questions<\/h2>\n<p>Calculating registration fees in accordance with Article 683 of the CGI raises many practical questions. This section answers the most frequently asked questions concerning the application of this article, calculation methods, applicable rates and legal implications in the event of error. <\/p>\n<h3>What is Article 683 of the CGI?<\/h3>\n<p>Article 683 of the French General Tax Code (CGI) sets out the tax regime applicable to registration fees for certain legal transactions. It sets out the procedures for taxing deeds and agreements subject to registration. In particular, this article specifies the tax base, calculation rules and reporting obligations for taxpayers. It forms part of the broader framework of transfer tax law, and is an essential reference for determining the tax obligations associated with the legal acts concerned.   <\/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 deed or transaction concerned. The basis of calculation generally corresponds to the actual market value of the property or the financial consideration mentioned in the deed. The nature of the transaction must be precisely identified, the tax base determined, and then the rate set out in the article applied. Certain deductions or allowances may apply depending on the situation, requiring a detailed analysis of each case.   <\/p>\n<h3>What is the rate applicable to Article 683 registration fees?<\/h3>\n<p>The rate of registration duty stipulated by Article 683 of the CGI varies according to the nature of the transaction, and can be either fixed or proportional. Proportional rates generally range from 0.60% to 5%, depending on the type of transaction. For certain specific transactions, a fixed fee may apply. It is crucial to check the provisions in force at the time of the transaction, as these rates may change according to successive Finance Acts. The tax authorities publish regular updates of these rates.    <\/p>\n<h3>Which transactions are covered by Article 683 of the CGI?<\/h3>\n<p>Article 683 of the French General Tax Code (CGI) applies mainly to transfers of ownership, transfers of company shares, contributions to a company and certain deeds relating to real estate. It also applies to deeds of partition, gifts inter vivos, and various agreements transferring ownership. Each category of transaction can benefit from a specific regime with differentiated rates. The precise legal classification of the deed is decisive in identifying the applicable tax regime and avoiding any disputes with the tax authorities.   <\/p>\n<h3>What are the consequences of an error in calculating registration fees?<\/h3>\n<p>An error in calculating registration fees can have serious financial consequences. The tax authorities may impose penalties and interest on late payment, up to 40% of the amount due in cases of bad faith. Underpayment exposes the taxpayer to administrative sanctions, and may lead to tax litigation. Conversely, overpayment represents a financial loss that is often difficult to recover. It is therefore essential to carry out a rigorous verification before registering the deed.    <\/p>\n<h3>How can a tax lawyer help you with registration fees?<\/h3>\n<p>A tax lawyer provides in-depth legal expertise to optimize the calculation of registration fees and secure your transactions. He or she analyzes the tax status of the deed, identifies applicable legal optimization mechanisms, and verifies that calculations comply with Article 683 of the CGI. In the event of a <a href=\"https:\/\/www.altertax-avocats.com\/loi-de-finances-2024-controle-fiscal-prix-de-transfert\/\">tax audit<\/a> or dispute, the lawyer will defend you in your dealings with the tax authorities. His preventive intervention helps to avoid costly errors and to structure operations in a tax-efficient way, while complying with current regulations.   <\/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) \ud83e\uddee Registration duty simulator (Article 683 CGI) Type of operation : Direct real estate transfer Shares in property companies (SPI) Non-property company shares Sale or transfer price (\u20ac) : Expenses and incidentals (\u20ac) : Calculate rights \ud83d\udcca Calculation results Main [&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-8732","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>683 registration fee calculation: avoid errors - 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\/683-registration-fee-calculation-avoid-errors\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"683 registration fee calculation: avoid errors - Altertax Avocats\" \/>\n<meta property=\"og:description\" content=\"Calculating registration duties in accordance with Article 683 of the French General Tax Code (CGI) \ud83e\uddee Registration duty simulator (Article 683 CGI) Type of operation : Direct real estate transfer Shares in property companies (SPI) Non-property company shares Sale or transfer price (\u20ac) : Expenses and incidentals (\u20ac) : Calculate rights \ud83d\udcca Calculation results Main [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.altertax-avocats.com\/en\/683-registration-fee-calculation-avoid-errors\/\" \/>\n<meta property=\"og:site_name\" content=\"Altertax Avocats\" \/>\n<meta property=\"article:published_time\" content=\"2026-03-05T10:12:08+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=\"10 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\\\/683-registration-fee-calculation-avoid-errors\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.altertax-avocats.com\\\/en\\\/683-registration-fee-calculation-avoid-errors\\\/\"},\"author\":{\"name\":\"Equipe de AlterTax Avocats\",\"@id\":\"https:\\\/\\\/www.altertax-avocats.com\\\/en\\\/#\\\/schema\\\/person\\\/bbfb0f93f3e05c30485cf20fa2dff731\"},\"headline\":\"683 registration fee calculation: avoid errors\",\"datePublished\":\"2026-03-05T10:12:08+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.altertax-avocats.com\\\/en\\\/683-registration-fee-calculation-avoid-errors\\\/\"},\"wordCount\":2109,\"publisher\":{\"@id\":\"https:\\\/\\\/www.altertax-avocats.com\\\/en\\\/#organization\"},\"articleSection\":[\"Litigation\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.altertax-avocats.com\\\/en\\\/683-registration-fee-calculation-avoid-errors\\\/\",\"url\":\"https:\\\/\\\/www.altertax-avocats.com\\\/en\\\/683-registration-fee-calculation-avoid-errors\\\/\",\"name\":\"683 registration fee calculation: avoid errors - Altertax Avocats\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.altertax-avocats.com\\\/en\\\/#website\"},\"datePublished\":\"2026-03-05T10:12:08+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.altertax-avocats.com\\\/en\\\/683-registration-fee-calculation-avoid-errors\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.altertax-avocats.com\\\/en\\\/683-registration-fee-calculation-avoid-errors\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.altertax-avocats.com\\\/en\\\/683-registration-fee-calculation-avoid-errors\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Accueil\",\"item\":\"https:\\\/\\\/www.altertax-avocats.com\\\/en\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"683 registration fee calculation: avoid errors\"}]},{\"@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":"683 registration fee calculation: avoid errors - 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\/683-registration-fee-calculation-avoid-errors\/","og_locale":"en_US","og_type":"article","og_title":"683 registration fee calculation: avoid errors - Altertax Avocats","og_description":"Calculating registration duties in accordance with Article 683 of the French General Tax Code (CGI) \ud83e\uddee Registration duty simulator (Article 683 CGI) Type of operation : Direct real estate transfer Shares in property companies (SPI) Non-property company shares Sale or transfer price (\u20ac) : Expenses and incidentals (\u20ac) : Calculate rights \ud83d\udcca Calculation results Main [&hellip;]","og_url":"https:\/\/www.altertax-avocats.com\/en\/683-registration-fee-calculation-avoid-errors\/","og_site_name":"Altertax Avocats","article_published_time":"2026-03-05T10:12:08+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":"10 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.altertax-avocats.com\/en\/683-registration-fee-calculation-avoid-errors\/#article","isPartOf":{"@id":"https:\/\/www.altertax-avocats.com\/en\/683-registration-fee-calculation-avoid-errors\/"},"author":{"name":"Equipe de AlterTax Avocats","@id":"https:\/\/www.altertax-avocats.com\/en\/#\/schema\/person\/bbfb0f93f3e05c30485cf20fa2dff731"},"headline":"683 registration fee calculation: avoid errors","datePublished":"2026-03-05T10:12:08+00:00","mainEntityOfPage":{"@id":"https:\/\/www.altertax-avocats.com\/en\/683-registration-fee-calculation-avoid-errors\/"},"wordCount":2109,"publisher":{"@id":"https:\/\/www.altertax-avocats.com\/en\/#organization"},"articleSection":["Litigation"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.altertax-avocats.com\/en\/683-registration-fee-calculation-avoid-errors\/","url":"https:\/\/www.altertax-avocats.com\/en\/683-registration-fee-calculation-avoid-errors\/","name":"683 registration fee calculation: avoid errors - Altertax Avocats","isPartOf":{"@id":"https:\/\/www.altertax-avocats.com\/en\/#website"},"datePublished":"2026-03-05T10:12:08+00:00","breadcrumb":{"@id":"https:\/\/www.altertax-avocats.com\/en\/683-registration-fee-calculation-avoid-errors\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.altertax-avocats.com\/en\/683-registration-fee-calculation-avoid-errors\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.altertax-avocats.com\/en\/683-registration-fee-calculation-avoid-errors\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https:\/\/www.altertax-avocats.com\/en\/"},{"@type":"ListItem","position":2,"name":"683 registration fee calculation: avoid errors"}]},{"@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\/8732","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=8732"}],"version-history":[{"count":0,"href":"https:\/\/www.altertax-avocats.com\/en\/wp-json\/wp\/v2\/posts\/8732\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.altertax-avocats.com\/en\/wp-json\/wp\/v2\/media?parent=8732"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.altertax-avocats.com\/en\/wp-json\/wp\/v2\/categories?post=8732"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.altertax-avocats.com\/en\/wp-json\/wp\/v2\/tags?post=8732"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}