 {"id":8731,"date":"2026-03-05T11:11:53","date_gmt":"2026-03-05T10:11:53","guid":{"rendered":"https:\/\/www.altertax-avocats.com\/calculation-of-683-registration-fees-expert-guide-currentyear\/"},"modified":"2026-03-05T11:11:53","modified_gmt":"2026-03-05T10:11:53","slug":"calculation-of-683-registration-fees-expert-guide-currentyear","status":"publish","type":"post","link":"https:\/\/www.altertax-avocats.com\/en\/calculation-of-683-registration-fees-expert-guide-currentyear\/","title":{"rendered":"Calculation of 683 registration fees: expert guide 2026."},"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-header\">\n<h3>\ud83e\uddee Registration Fee Calculator<\/h3>\n<p class=\"sim-description\">Calculate your registration fees in accordance with article 683 of the CGI (French General Tax Code)<\/p>\n<\/div>\n<div class=\"sim-form\">\n<div class=\"form-group\">\n<label for=\"transaction-type\">Type of operation :<\/label>\n<select class=\"form-control\" id=\"transaction-type\">\n<option value=\"parts-non-cotees\">Sale of shares (unlisted company)<\/option>\n<option value=\"actions-cotees\">Sale of shares (listed company)<\/option>\n<option value=\"immobilier\">Real estate transfer<\/option>\n<option value=\"prepond\u00e9rance-immobiliere\">Shares in a property company<\/option>\n<\/select>\n<\/div>\n<div class=\"form-group\">\n<label for=\"transaction-amount\">Transaction amount (\u20ac) :<\/label>\n<input class=\"form-control\" id=\"transaction-amount\" min=\"0\" placeholder=\"Ex: 150000\" step=\"1000\" type=\"number\">\n<\/div>\n<div class=\"form-group abattement-group\" id=\"abattement-section\">\n<label class=\"checkbox-label\">\n<input id=\"apply-abattement\" type=\"checkbox\">\n<span>Apply the \u20ac23,000 allowance<\/span>\n<\/label>\n<\/div>\n<button class=\"calculate-btn\" onclick=\"window.calculateDroits()\">Calculate rights<\/button>\n<\/div>\n<div class=\"results-section\" id=\"results-section\" style=\"display: none;\">\n<div class=\"result-header\">\n<h4>\ud83d\udcca Calculation result<\/h4>\n<\/div>\n<div class=\"result-details\">\n<div class=\"detail-row\">\n<span class=\"detail-label\">Transaction amount :<\/span>\n<span class=\"detail-value\" id=\"result-montant\">0 \u20ac<\/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 highlight-negative\" id=\"result-abattement\">&#8211; 23 000 \u20ac<\/span>\n<\/div>\n<div class=\"detail-row\">\n<span class=\"detail-label\">Tax base :<\/span>\n<span class=\"detail-value\" id=\"result-base\">0 \u20ac<\/span>\n<\/div>\n<div class=\"detail-row\">\n<span class=\"detail-label\">Applicable rate :<\/span>\n<span class=\"detail-value\" id=\"result-taux\">0%<\/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 highlight-total\" id=\"result-total\">0 \u20ac<\/span>\n<\/div>\n<\/div>\n<div class=\"info-box\">\n<p id=\"result-info\"><\/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 amountInput = document.getElementById('transaction-amount').value;\n    const applyAbattement = document.getElementById('apply-abattement').checked;\n    \n    \/\/ Validation\n    if (!amountInput || amountInput === '') {\n        alert('Veuillez saisir un montant de transaction');\n        return;\n    }\n    \n    const amount = parseFloat(amountInput);\n    \n    if (isNaN(amount) || amount <= 0) { alert('Veuillez saisir un montant valide'); return; } let taux = 0; let abattement = 0; let infoText = ''; \/\/ D\u00e9terminer le taux et l'abattement selon le type switch(transactionType) { case 'parts-non-cotees': taux = 3; if (applyAbattement) { abattement = 23000; } infoText = 'Taux de 3% applicable aux cessions de parts de soci\u00e9t\u00e9s non cot\u00e9es. L'abattement de 23 000 \u20ac s'applique par cession.'; break; case 'actions-cotees': taux = 0.1; abattement = 0; infoText = 'Taux r\u00e9duit de 0,1% pour les cessions d'actions de soci\u00e9t\u00e9s cot\u00e9es.'; break; case 'immobilier': taux = 5.70; abattement = 0; infoText = 'Taux standard de 5,70% pour les mutations immobili\u00e8res (4,50% + 1,20% de taxe additionnelle).'; break; case 'prepond\u00e9rance-immobiliere': taux = 5; abattement = 0; infoText = 'Taux de 5% applicable aux parts de soci\u00e9t\u00e9s \u00e0 pr\u00e9pond\u00e9rance immobili\u00e8re.'; break; } \/\/ Calculs const baseImposable = Math.max(0, amount - abattement); const droitsDus = baseImposable * (taux \/ 100); \/\/ Afficher les r\u00e9sultats document.getElementById('result-montant').textContent = formatCurrency(amount); document.getElementById('result-base').textContent = formatCurrency(baseImposable); document.getElementById('result-taux').textContent = taux + '%'; document.getElementById('result-total').textContent = formatCurrency(droitsDus); document.getElementById('result-info').textContent = infoText; \/\/ Afficher\/masquer la ligne d'abattement const abattementRow = document.getElementById('abattement-row'); if (abattement> 0) {\n        abattementRow.style.display = 'flex';\n        document.getElementById('result-abattement').textContent = '- ' + formatCurrency(abattement);\n    } else {\n        abattementRow.style.display = 'none';\n    }\n    \n    \/\/ Afficher la section r\u00e9sultats\n    document.getElementById('results-section').style.display = 'block';\n    \n    \/\/ Scroll vers les r\u00e9sultats\n    document.getElementById('results-section').scrollIntoView({ behavior: 'smooth', block: 'nearest' });\n};\n\nfunction formatCurrency(value) {\n    return new Intl.NumberFormat('fr-FR', {\n        style: 'currency',\n        currency: 'EUR',\n        minimumFractionDigits: 0,\n        maximumFractionDigits: 2\n    }).format(value);\n}\n\n\/\/ G\u00e9rer l'affichage de la section abattement\ndocument.addEventListener('DOMContentLoaded', function() {\n    const typeSelect = document.getElementById('transaction-type');\n    const abattementSection = document.getElementById('abattement-section');\n    \n    function updateAbattementVisibility() {\n        const selectedType = typeSelect.value;\n        if (selectedType === 'parts-non-cotees') {\n            abattementSection.style.display = 'block';\n        } else {\n            abattementSection.style.display = 'none';\n            document.getElementById('apply-abattement').checked = false;\n        }\n    }\n    \n    typeSelect.addEventListener('change', updateAbattementVisibility);\n    updateAbattementVisibility();\n    \n    \/\/ Calculer automatiquement lors de la saisie\n    document.getElementById('transaction-amount').addEventListener('input', function() {\n        if (this.value) {\n            const resultsSection = document.getElementById('results-section');\n            if (resultsSection.style.display === 'block') {\n                window.calculateDroits();\n            }\n        }\n    });\n    \n    document.getElementById('apply-abattement').addEventListener('change', function() {\n        const resultsSection = document.getElementById('results-section');\n        if (resultsSection.style.display === 'block') {\n            window.calculateDroits();\n        }\n    });\n});\n<\/script>\n<style type=\"text\/css\">\n.simulator-wrapper {\n    max-width: 700px;\n    margin: 20px auto;\n    font-family: Poppins, sans-serif;\n    background: #ffffff;\n    border-radius: 12px;\n    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);\n    overflow: hidden;\n}\n\n.simulator-wrapper .sim-header {\n    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);\n    color: white;\n    padding: 25px;\n    text-align: center;\n}\n\n.simulator-wrapper .sim-header h3 {\n    margin: 0 0 10px 0;\n    font-size: 24px;\n    font-weight: 600;\n}\n\n.simulator-wrapper .sim-description {\n    margin: 0;\n    font-size: 14px;\n    opacity: 0.95;\n}\n\n.simulator-wrapper .sim-form {\n    padding: 30px;\n}\n\n.simulator-wrapper .form-group {\n    margin-bottom: 20px;\n}\n\n.simulator-wrapper .form-group label {\n    display: block;\n    margin-bottom: 8px;\n    font-weight: 600;\n    color: #333;\n    font-size: 14px;\n}\n\n.simulator-wrapper .form-control {\n    width: 100%;\n    padding: 12px 15px;\n    border: 2px solid #e0e0e0;\n    border-radius: 8px;\n    font-size: 15px;\n    transition: all 0.3s ease;\n    box-sizing: border-box;\n}\n\n.simulator-wrapper .form-control:focus {\n    outline: none;\n    border-color: #667eea;\n    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);\n}\n\n.simulator-wrapper .abattement-group {\n    background: #f8f9ff;\n    padding: 15px;\n    border-radius: 8px;\n    border: 1px solid #e0e7ff;\n}\n\n.simulator-wrapper .checkbox-label {\n    display: flex;\n    align-items: center;\n    cursor: pointer;\n    font-weight: 500;\n    color: #555;\n}\n\n.simulator-wrapper .checkbox-label input[type=\"checkbox\"] {\n    margin-right: 10px;\n    width: 18px;\n    height: 18px;\n    cursor: pointer;\n}\n\n.simulator-wrapper .calculate-btn {\n    width: 100%;\n    padding: 15px;\n    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);\n    color: white;\n    border: none;\n    border-radius: 8px;\n    font-size: 16px;\n    font-weight: 600;\n    cursor: pointer;\n    transition: all 0.3s ease;\n    margin-top: 10px;\n}\n\n.simulator-wrapper .calculate-btn:hover {\n    transform: translateY(-2px);\n    box-shadow: 0 6px 12px rgba(102, 126, 234, 0.3);\n}\n\n.simulator-wrapper .calculate-btn:active {\n    transform: translateY(0);\n}\n\n.simulator-wrapper .results-section {\n    background: #f8f9fa;\n    padding: 30px;\n    border-top: 3px solid #667eea;\n}\n\n.simulator-wrapper .result-header h4 {\n    margin: 0 0 20px 0;\n    color: #333;\n    font-size: 20px;\n}\n\n.simulator-wrapper .result-details {\n    background: white;\n    padding: 20px;\n    border-radius: 8px;\n    margin-bottom: 20px;\n}\n\n.simulator-wrapper .detail-row {\n    display: flex;\n    justify-content: space-between;\n    align-items: center;\n    padding: 12px 0;\n    border-bottom: 1px solid #f0f0f0;\n}\n\n.simulator-wrapper .detail-row:last-child {\n    border-bottom: none;\n}\n\n.simulator-wrapper .detail-label {\n    color: #666;\n    font-size: 14px;\n}\n\n.simulator-wrapper .detail-value {\n    font-weight: 600;\n    color: #333;\n    font-size: 15px;\n}\n\n.simulator-wrapper .highlight-negative {\n    color: #e74c3c;\n}\n\n.simulator-wrapper .total-row {\n    background: #f8f9ff;\n    margin: 15px -20px -20px -20px;\n    padding: 15px 20px !important;\n    border-bottom: none !important;\n}\n\n.simulator-wrapper .highlight-total {\n    color: #667eea;\n    font-size: 20px;\n    font-weight: 700;\n}\n\n.simulator-wrapper .info-box {\n    background: #fff3cd;\n    border-left: 4px solid #ffc107;\n    padding: 15px;\n    border-radius: 4px;\n}\n\n.simulator-wrapper .info-box p {\n    margin: 0;\n    color: #856404;\n    font-size: 13px;\n    line-height: 1.6;\n}\n\n@media (max-width: 600px) {\n    .simulator-wrapper {\n        margin: 10px;\n    }\n    \n    .simulator-wrapper .sim-form,\n    .simulator-wrapper .results-section {\n        padding: 20px;\n    }\n    \n    .simulator-wrapper .detail-row {\n        flex-direction: column;\n        align-items: flex-start;\n        gap: 5px;\n    }\n    \n    .simulator-wrapper .detail-value {\n        align-self: flex-end;\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>Registration fees are an essential component of the French tax system for certain legal transactions.<a href=\"https:\/\/www.altertax-avocats.com\/contentieux-fiscal\/droits-enregistrement\/683-cgi\/\">Article 683 of the French General Tax Code (CGI)<\/a> provides a specific framework for calculating these duties for certain deeds. You need to master the applicable rules to accurately assess your tax burden and avoid any subsequent adjustments. This technical analysis presents the calculation mechanisms, tax bases and rates applicable to your situation.   <\/p><h2>What is the calculation of registration fees under article 683?<\/h2><p>The calculation of registration duty under article 683 of the French General Tax Code is the method used to determine the amount of tax due on the registration of certain specific legal acts. Article 683 of the CGI stipulates that &#8220;deeds involving the transfer of shares, founders&#8217; shares or profit shares in companies are subject to a proportional registration duty&#8221;. This provision establishes a separate tax regime for transfers of securities and shares, with a rate of 0.1% for transfers of shares in listed companies and 3% (after allowance) for shares in unlisted companies.  <\/p><p>Let&#8217;s take a concrete example: you sell shares in a SARL for 150,000 euros. You benefit from an allowance of 23,000 euros, reducing the tax base to 127,000 euros. The calculation is as follows: 127,000 \u00d7 3% = 3,810 euros in registration tax due. This amount must be declared and paid in the month following the sale. <a href=\"https:\/\/www.altertax-avocats.com\/fiscalite\/services-professionnels-comptables\">Professional accountants<\/a> are frequently called in to establish the value of the shares and prepare the associated tax returns.    <\/p><p>Article 683 differs from the other provisions of the CGI relating to registration duties, notably article 680, which concerns transfers of real estate for valuable consideration, and article 635 relating to gifts. Its specific scope of application covers <a href=\"https:\/\/www.altertax-avocats.com\/contentieux-fiscal\/droits-enregistrement\/cessions-parts\/\">transfers of company shares<\/a>, transfers of shares, as well as transfers of founder&#8217;s shares or profit shares. You need to identify the precise legal nature of your transaction in order to apply the appropriate tax regime and avoid any mischaracterization that could lead to a tax reassessment.  <\/p><h2>Calculation basis and components<\/h2><p>In most cases, the basis for calculating <a href=\"https:\/\/www.altertax-avocats.com\/contentieux-fiscal\/droits-enregistrement\/\">registration fees<\/a> is the actual market value of the property or rights transferred. You must use the price stipulated in the deed or, in the absence of a price (gifts, contributions), the value declared by the parties. The tax authorities have the right to check this valuation using three main methods: comparison with similar recent transactions, valuation by capitalization of income, or real estate appraisal. An adjustment is generally made when the discrepancy exceeds 10% of the declared value, a threshold above which statistics show that 65% of inspections result in an adjustment.   <\/p><p>For sales of shares, the tax base is based on the sale price actually paid, plus any charges and conditions that increase the actual consideration. Ancillary expenses such as intermediary commissions are not added to the tax base, except in two specific situations: when they are borne by the purchaser but re-invoiced to the seller, or when they constitute a disguised price supplement. The <a href=\"https:\/\/www.altertax-avocats.com\/fiscalite\/services-professionnels-comptables\/tenue-comptable-revision-fiscalite-d-entreprise\">accounting situation<\/a> of the sold company is used as a reference for assessing the real value of the shares.  <\/p><p>Let&#8217;s take a concrete example: you sell shares in the company for 100,000 euros. The transferee also undertakes to take over a loan of 10,000 euros taken out by the transferor with the company. The taxable amount is 110,000 euros (price + expenses incurred). If you take advantage of the 23,000 euro allowance applicable to share sales, the net taxable amount is 87,000 euros. The 3% registration fee is 2,610 euros. The notary&#8217;s fees (1,500 euros) and the broker&#8217;s commission (3,000 euros) are excluded from this calculation.     <\/p><h3>Items to be included in the database<\/h3><p>The calculation base includes all the actual consideration for the transaction. You must include : <\/p><ul><li><strong>Principal price<\/strong>: amount stipulated in the deed of sale<\/li><li><strong>Price complements<\/strong>: conditional or deferred sums requiring an additional declaration when they are actually paid.<\/li><li><strong>Exchange balances<\/strong>: amounts paid to compensate for a difference in value in exchange transactions.<\/li><li><strong>Indirect benefits<\/strong>: non-monetary consideration (e.g. assumption of a liability on the part of the transferor, provision of an asset free of charge).<\/li><\/ul><p>For example: when you sell shares at an initial price of 100,000 euros, you declare this amount immediately. If a price supplement of 20,000 euros is planned after achieving a sales target, you make an additional declaration when it is paid. For an exchange of shares with a balancing payment of 15,000 euros, you calculate the tax on this amount according to the system applicable to the transaction.  <\/p><h3>Excluded items<\/h3><p>You do not include the following items in the basis for calculating registration fees:<\/p><ul><li><strong>Notary fees<\/strong>: these remain separate from the tax base (e.g. for a sale of 200,000 euros, notary fees of 8,000 euros are not added to the tax base).<\/li><li><strong>Ancillary taxes<\/strong>: the real estate security contribution applies separately<\/li><li><strong>Conventional late payment interest<\/strong>: stipulated for deferred payment of the price, unless it constitutes a disguised price supplement.<\/li><\/ul><h2>Rates applicable according to the nature of the procedure<\/h2><p>Registration duty rates vary considerably depending on the legal nature of the deed being registered. You need to precisely identify the type of transaction to apply the appropriate tax scale. The rate structure generally combines several components: the departmental duty, the additional departmental tax and possibly a communal tax.  <\/p><h3>Transfer of shares<\/h3><p>For sales of shares in property companies, you apply a rate of 5%. This rate applies to the fraction of the value of the shares corresponding to the buildings held by the company. <\/p><p>Shares in unlisted companies are subject to a tax of 3% after application of a possible allowance. This system applies to companies whose assets do not consist mainly of real estate. You benefit from an allowance of 23,000 euros per shareholder before application of this rate.  <\/p><h3>Real estate transfers<\/h3><p>Transfers of real estate are subject to a separate system, with varying departmental rates. The basic rate varies between 3.80% and 4.50%, depending on the local authority. To this main rate is added an additional departmental tax of 1.20%, as well as variable communal levies.  <\/p><p>Here are the rates applicable in three representative d\u00e9partements:<\/p><ul><li><strong>Paris (75)<\/strong>: 4.50% + 1.20% additional tax = 5.70% total<\/li><li><strong>Rh\u00f4ne (69)<\/strong>: 4.50% + 1.20% additional tax = 5.70% total<\/li><li><strong>Bouches-du-Rh\u00f4ne (13)<\/strong>: 4.50% + 1.20% additional tax = 5.70% total<\/li><\/ul><p>To determine the exact rate, consult the rates applicable in the d\u00e9partement where the property is located. Most d\u00e9partements have adopted the maximum rate of 4.50%. <\/p><h3>Example of a complete calculation<\/h3><p>For a property purchase of 300,000 euros in Paris, you calculate the taxes as follows:<\/p><ul><li>Tax base: \u20ac300,000<\/li><li>Departmental duty (4.50%): \u20ac13,500<\/li><li>Additional departmental tax (1.20%): \u20ac3,600<\/li><li>Property security contribution: 0.10% or \u20ac300<\/li><li><strong>Total duties and taxes: \u20ac17,400<\/strong><\/li><\/ul><p>This amount is added to the notary&#8217;s fees to determine the total cost of the purchase. You pay these fees when you sign the deed of sale. <\/p><h3>Allowances and reductions<\/h3><p>The French legislator has introduced a 23,000 euro allowance applicable to sales of shares in unlisted companies. This allowance applies per sale and not per shareholder, which means that it is divided proportionally between all the sellers involved in the transaction. You deduct this allowance from the total value of the transfer before applying the 3% rate. This measure is designed to encourage the transfer of small businesses, and applies to companies with a preponderance of non-property assets.   <\/p><p>Practical example: in the case of a sale of shares for 100,000 euros by two partners, each selling 50% of the shares, the 23,000 euro allowance is divided between them. The tax base is therefore 77,000 euros (100,000 &#8211; 23,000). Registration fees amount to 2,310 euros (77,000 \u00d7 3%). Each transferor pays a proportionate 1,155 euros in duty. Please note that in the case of multiple sales in the same calendar year, the 23,000-euro allowance represents a global ceiling that can only be applied once.    <\/p><p>Company reorganizations, such as partial contributions of assets or mergers, are eligible for separate tax breaks under strict conditions. You can check whether your operation qualifies for the specific schemes provided for in the General Tax Code for such reorganization operations. <\/p><h2>Declaration and payment procedure<\/h2><p>You must file the registration duty declaration within the legal deadline of one month following completion of the deed. For sales of company shares, use Cerfa form n\u00b02759 (declaration n\u00b02759-SD). For share transfers, the form must be filed with the corporate tax department of the transferor&#8217;s place of residence, or of the location of the property for real estate transfers. Remote filing via the impots.gouv.fr portal is now the preferred option, and is compulsory for certain professionals. To be valid, <a href=\"https:\/\/www.altertax-avocats.com\/contentieux-fiscal\/droits-enregistrement\/formulaires\/\">administrative forms<\/a> must include all mandatory information.    <\/p><p>Payment of fees must accompany the declaration, by bank transfer, cheque or online payment. Administrative processing generally takes place within 15 days for complete files. Any delay in declaration or payment is subject to interest on arrears at a rate of 0.20% per month, and to penalties of up to 40% of the fees due in cases of manifest bad faith.  <\/p><h3>Required supporting documents<\/h3><p>You must provide the following documents with your declaration:<\/p><ul><li>Authentic or private deed (main document)<\/li><li>Statements of value or appraisal reports<\/li><li>Recent balance sheets<\/li><li>For sales of shares: company articles of association and financial statements<\/li><\/ul><p>Keep all these documents for 6 years, in case the authorities ask for them in the event of a subsequent audit.<\/p><h2>Tax audit and litigation<\/h2><p>The tax authorities have a three-year period in which to review your tax return and rectify the tax initially assessed. This period extends to six years in the event of omission, and to ten years in the event of fraud. The tax authorities may contest the declared value if they have evidence of under-valuation. The &#8220;rectification contradictoire&#8221; procedure gives you the opportunity to present your observations before any additional taxes are levied.   <\/p><p>In the event of persistent disagreement over the assessment, you can refer the matter to the departmental conciliation commission. This joint body issues an opinion that is binding on the administration in around 70% of cases, offering a favorable outcome for the majority of taxpayers. If the dispute persists, you can still appeal to the administrative court. The assistance of a <a href=\"https:\/\/www.altertax-avocats.com\/avocat-contentieux-fiscal\/\">lawyer specialized in tax litigation<\/a> is often decisive in defending your interests effectively and optimizing your chances of success.   <\/p><h3>Surcharges and penalties<\/h3><p>Insufficient declarations are subject to surcharges proportional to the duties evaded. Unintentional omission, characterized by a simple clerical error or ignorance of regulations with no intention of concealment, carries a surcharge of 10%. In cases of manifest bad faith, where you deliberately understate the tax base or conceal relevant information, even though you are aware of your obligations, the penalty is 40%. The tax authorities assess this distinction on the basis of a number of criteria: consistency of previous declarations, complexity of the operation, and behaviour during the audit. Fraudulent maneuvers, involving falsified documents or artificial arrangements designed to evade tax, carry a penalty of 80%, with potential criminal prosecution.    <\/p><p>You can apply for extenuating penalties to be waived if you can justify extenuating circumstances. The administration examines these requests on a case-by-case basis, and generally takes between 3 and 6 months to respond, depending on the complexity of the case. According to administrative statistics, between 30% and 40% of requests for &#8220;remise gracieuse&#8221; are granted, in whole or in part. Spontaneous regularization prior to an audit generally results in a substantial reduction in the applicable penalties, as the administration values this proactive approach to compliance.   <\/p><h2>Tax optimization and legal security<\/h2><p>By structuring your operations in advance, you can legally optimize the tax burden associated with registration fees. You analyze the various legal options available to achieve your business objectives: the choice between share and asset sales generates distinct tax consequences that you evaluate in detail. For complex transactions or those involving significant sums, it&#8217;s essential to consult <a href=\"https:\/\/www.altertax-avocats.com\/fiscalite-du-patrimoine\/\">wealth tax<\/a> experts. These professionals can identify the preferential tax arrangements that apply, and structure the transaction to minimize the tax burden while complying strictly with the law. Optimized structuring generally results in tax savings of between 15% and 35%, depending on the nature of the transaction and the tax incentives used.    <\/p><p>Using a tax rescript gives you legal certainty before the transaction is carried out. You ask the authorities about the application of the tax system to your particular situation, with an average response time of 3 to 6 months, depending on the complexity of the case. The response you receive is binding on the tax authorities, and prevents any subsequent adjustments if you comply exactly with the conditions set out in your request. This procedure is an invaluable tool for validating the conformity of your tax package before its final execution.   <\/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 (CGI). We cover the essential aspects to help you understand your tax obligations and make your calculations correctly. <\/p>\n<h3>What is Article 683 of the CGI?<\/h3>\n<p>Article 683 of the Code G\u00e9n\u00e9ral des Imp\u00f4ts (General Tax Code) sets out how registration duties are calculated for certain specific legal transactions. It sets out the taxable bases, the applicable rates and the rules for calculating duties. This article is a reference text for determining the amount of duty due when registering deeds with the tax authorities, particularly for transfers of ownership and certain agreements. These obligations form part of the broader framework of <a href=\"https:\/\/www.altertax-avocats.com\/consentement-a-limpot\/\">tax consent<\/a>.   <\/p>\n<h3>How to calculate registration fees under Article 683 of the French General Tax Code?<\/h3>\n<p>Registration fees under Article 683 are calculated by applying the rate specified in the text to the tax base determined. The tax base generally corresponds to the market value of the property or the amount of the transaction. The calculation takes into account any allowances, incidental expenses and the specific features of the transaction concerned. It is essential to identify the nature of the transaction in order to apply the correct rate and comply with reporting obligations.   <\/p>\n<h3>What are the steps involved in calculating registration fees under Article 683 of the French General Tax Code?<\/h3>\n<p>The main steps are: identifying the exact nature of the transaction subject to registration, determining the taxable base by assessing the value of the property or transaction, checking applicable allowances and exemptions, applying the tax rate provided for under Article 683, calculating any penalties for late payment, and making payment within the legal timeframe. Full documentation of each step is recommended to justify the calculation to the tax authorities. <\/p>\n<h3>When does Article 683 of the CGI apply?<\/h3>\n<p>Article 683 applies in particular to transfers for valuable consideration of real estate, transfers of shares, contributions to a company under certain conditions, and various agreements subject to compulsory registration. Each type of transaction may benefit from specific rates or exemptions. The precise legal classification of the transaction is crucial to the correct application of the provisions of this article, and to avoid any subsequent tax reassessment.  <\/p>\n<h3>What are the penalties for miscalculating registration fees?<\/h3>\n<p>Errors in calculation can result in significant penalties, including late payment interest calculated on unpaid amounts, a surcharge of up to 40% of the amount of duty evaded in cases of bad faith, and up to 80% in the case of fraudulent maneuvers. The tax authorities may also reassess the amount of tax due. In the event of a dispute, the tax authorities may take legal action to contest the reassessment.  <\/p>\n<h3>When should you consult a tax lawyer about registration fees?<\/h3>\n<p>It is advisable to consult a tax lawyer for complex transactions involving large sums of money, in case of doubt as to the legal status of the deed, to legally optimize the tax burden while avoiding any risk of <a href=\"https:\/\/www.altertax-avocats.com\/en\/abus-de-droit\/\">abuse of rights<\/a>, or when a tax reassessment is envisaged. The legal expertise of a professional allows you to secure your calculations, anticipate risks and benefit from appropriate tax strategies. Specialized support is particularly useful for corporate restructuring and international operations.  <\/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 Fee Calculator Calculate your registration fees in accordance with article 683 of the CGI (French General Tax Code) Type of operation : Sale of shares (unlisted company)Sale of shares (listed company)Real estate transferShares in a property company Transaction [&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-8731","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>Calculation of 683 registration fees: expert guide 2026. - 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\/calculation-of-683-registration-fees-expert-guide-currentyear\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Calculation of 683 registration fees: expert guide 2026. - 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 Fee Calculator Calculate your registration fees in accordance with article 683 of the CGI (French General Tax Code) Type of operation : Sale of shares (unlisted company)Sale of shares (listed company)Real estate transferShares in a property company Transaction [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.altertax-avocats.com\/en\/calculation-of-683-registration-fees-expert-guide-currentyear\/\" \/>\n<meta property=\"og:site_name\" content=\"Altertax Avocats\" \/>\n<meta property=\"article:published_time\" content=\"2026-03-05T10:11:53+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=\"13 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\\\/calculation-of-683-registration-fees-expert-guide-currentyear\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.altertax-avocats.com\\\/en\\\/calculation-of-683-registration-fees-expert-guide-currentyear\\\/\"},\"author\":{\"name\":\"Equipe de AlterTax Avocats\",\"@id\":\"https:\\\/\\\/www.altertax-avocats.com\\\/en\\\/#\\\/schema\\\/person\\\/bbfb0f93f3e05c30485cf20fa2dff731\"},\"headline\":\"Calculation of 683 registration fees: expert guide 2026.\",\"datePublished\":\"2026-03-05T10:11:53+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.altertax-avocats.com\\\/en\\\/calculation-of-683-registration-fees-expert-guide-currentyear\\\/\"},\"wordCount\":2696,\"publisher\":{\"@id\":\"https:\\\/\\\/www.altertax-avocats.com\\\/en\\\/#organization\"},\"articleSection\":[\"Litigation\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.altertax-avocats.com\\\/en\\\/calculation-of-683-registration-fees-expert-guide-currentyear\\\/\",\"url\":\"https:\\\/\\\/www.altertax-avocats.com\\\/en\\\/calculation-of-683-registration-fees-expert-guide-currentyear\\\/\",\"name\":\"Calculation of 683 registration fees: expert guide %%currentYear%%. - Altertax Avocats\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.altertax-avocats.com\\\/en\\\/#website\"},\"datePublished\":\"2026-03-05T10:11:53+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.altertax-avocats.com\\\/en\\\/calculation-of-683-registration-fees-expert-guide-currentyear\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.altertax-avocats.com\\\/en\\\/calculation-of-683-registration-fees-expert-guide-currentyear\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.altertax-avocats.com\\\/en\\\/calculation-of-683-registration-fees-expert-guide-currentyear\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Accueil\",\"item\":\"https:\\\/\\\/www.altertax-avocats.com\\\/en\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Calculation of 683 registration fees: expert guide 2026.\"}]},{\"@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":"Calculation of 683 registration fees: expert guide 2026. - 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\/calculation-of-683-registration-fees-expert-guide-currentyear\/","og_locale":"en_US","og_type":"article","og_title":"Calculation of 683 registration fees: expert guide 2026. - Altertax Avocats","og_description":"Calculating registration duties in accordance with Article 683 of the French General Tax Code (CGI) \ud83e\uddee Registration Fee Calculator Calculate your registration fees in accordance with article 683 of the CGI (French General Tax Code) Type of operation : Sale of shares (unlisted company)Sale of shares (listed company)Real estate transferShares in a property company Transaction [&hellip;]","og_url":"https:\/\/www.altertax-avocats.com\/en\/calculation-of-683-registration-fees-expert-guide-currentyear\/","og_site_name":"Altertax Avocats","article_published_time":"2026-03-05T10:11:53+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":"13 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.altertax-avocats.com\/en\/calculation-of-683-registration-fees-expert-guide-currentyear\/#article","isPartOf":{"@id":"https:\/\/www.altertax-avocats.com\/en\/calculation-of-683-registration-fees-expert-guide-currentyear\/"},"author":{"name":"Equipe de AlterTax Avocats","@id":"https:\/\/www.altertax-avocats.com\/en\/#\/schema\/person\/bbfb0f93f3e05c30485cf20fa2dff731"},"headline":"Calculation of 683 registration fees: expert guide 2026.","datePublished":"2026-03-05T10:11:53+00:00","mainEntityOfPage":{"@id":"https:\/\/www.altertax-avocats.com\/en\/calculation-of-683-registration-fees-expert-guide-currentyear\/"},"wordCount":2696,"publisher":{"@id":"https:\/\/www.altertax-avocats.com\/en\/#organization"},"articleSection":["Litigation"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.altertax-avocats.com\/en\/calculation-of-683-registration-fees-expert-guide-currentyear\/","url":"https:\/\/www.altertax-avocats.com\/en\/calculation-of-683-registration-fees-expert-guide-currentyear\/","name":"Calculation of 683 registration fees: expert guide %%currentYear%%. - Altertax Avocats","isPartOf":{"@id":"https:\/\/www.altertax-avocats.com\/en\/#website"},"datePublished":"2026-03-05T10:11:53+00:00","breadcrumb":{"@id":"https:\/\/www.altertax-avocats.com\/en\/calculation-of-683-registration-fees-expert-guide-currentyear\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.altertax-avocats.com\/en\/calculation-of-683-registration-fees-expert-guide-currentyear\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.altertax-avocats.com\/en\/calculation-of-683-registration-fees-expert-guide-currentyear\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https:\/\/www.altertax-avocats.com\/en\/"},{"@type":"ListItem","position":2,"name":"Calculation of 683 registration fees: expert guide 2026."}]},{"@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\/8731","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=8731"}],"version-history":[{"count":0,"href":"https:\/\/www.altertax-avocats.com\/en\/wp-json\/wp\/v2\/posts\/8731\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.altertax-avocats.com\/en\/wp-json\/wp\/v2\/media?parent=8731"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.altertax-avocats.com\/en\/wp-json\/wp\/v2\/categories?post=8731"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.altertax-avocats.com\/en\/wp-json\/wp\/v2\/tags?post=8731"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}