 {"id":8256,"date":"2025-11-17T17:38:23","date_gmt":"2025-11-17T16:38:23","guid":{"rendered":"https:\/\/www.altertax-avocats.com\/tns-gross-net-salary-calculate-optimize-guide\/"},"modified":"2025-11-17T17:38:23","modified_gmt":"2025-11-17T16:38:23","slug":"tns-gross-net-salary-calculate-optimize-guide","status":"publish","type":"post","link":"https:\/\/www.altertax-avocats.com\/en\/tns-gross-net-salary-calculate-optimize-guide\/","title":{"rendered":"TNS Gross Net Salary: Calculate &amp; Optimize (Guide)"},"content":{"rendered":"\n \n        <h1>TNS Gross \/ Net Salary: Understanding the Remuneration of Self-Employed Workers<\/h1>\n        <div id=\"simu-zloop\">\n        <div class=\"simulator-wrapper\" id=\"simu-zloop\">\n<div class=\"sim-header\">\n<h3>\ud83e\uddee TNS Gross \/ Net Simulator<\/h3>\n<p class=\"sim-description\">Calculate your net remuneration as a self-employed worker<\/p>\n<\/div>\n<div class=\"sim-inputs\">\n<div class=\"input-group\">\n<label for=\"gross-income\">Gross annual professional income (\u20ac)<\/label>\n<input id=\"gross-income\" min=\"0\" placeholder=\"50000\" step=\"1000\" type=\"number\" value=\"50000\">\n<\/div>\n<div class=\"input-group\">\n<label for=\"activity-type\">Type of business<\/label>\n<select id=\"activity-type\">\n<option value=\"commerce\">Craftsman \/ Shopkeeper (40-42%)<\/option>\n<option value=\"liberal\">Liberal profession (43-45%)<\/option>\n<\/select>\n<\/div>\n<div class=\"input-group checkbox-group\">\n<label>\n<input id=\"show-comparison\" type=\"checkbox\">\n  Compare with Assimil\u00e9 Salari\u00e9 status\n            <\/label>\n<\/div>\n<\/div>\n<div class=\"sim-results\" id=\"results-section\">\n<div class=\"result-card tns-card\">\n<h4>\ud83d\udcbc TNS status<\/h4>\n<div class=\"visual-bar\">\n<div class=\"bar-segment contributions-bar\" id=\"tns-contrib-bar\"><\/div>\n<div class=\"bar-segment net-bar\" id=\"tns-net-bar\"><\/div>\n<\/div>\n<div class=\"result-details\">\n<div class=\"result-row\">\n<span class=\"label\">Gross income:<\/span>\n<span class=\"value\" id=\"tns-gross\">50 000 \u20ac<\/span>\n<\/div>\n<div class=\"result-row highlight-contrib\">\n<span class=\"label\">Social security contributions<span id=\"tns-rate\">(41%<\/span>):<\/span>\n<span class=\"value negative\" id=\"tns-contrib\">-20 500 \u20ac<\/span>\n<\/div>\n<div class=\"result-row highlight-net\">\n<span class=\"label\">Net disposable income:<\/span>\n<span class=\"value positive\" id=\"tns-net\">29 500 \u20ac<\/span>\n<\/div>\n<\/div>\n<\/div>\n<div class=\"result-card assimile-card\" id=\"comparison-card\" style=\"display: none;\">\n<h4>\ud83d\udc54 Assimil\u00e9 Salari\u00e9 status<\/h4>\n<div class=\"visual-bar\">\n<div class=\"bar-segment contributions-bar-high\" id=\"as-contrib-bar\"><\/div>\n<div class=\"bar-segment net-bar-low\" id=\"as-net-bar\"><\/div>\n<\/div>\n<div class=\"result-details\">\n<div class=\"result-row\">\n<span class=\"label\">Gross income:<\/span>\n<span class=\"value\" id=\"as-gross\">50 000 \u20ac<\/span>\n<\/div>\n<div class=\"result-row highlight-contrib\">\n<span class=\"label\">Social security contributions (75%):<\/span>\n<span class=\"value negative\" id=\"as-contrib\">-37 500 \u20ac<\/span>\n<\/div>\n<div class=\"result-row highlight-net\">\n<span class=\"label\">Net disposable income:<\/span>\n<span class=\"value positive\" id=\"as-net\">12 500 \u20ac<\/span>\n<\/div>\n<\/div>\n<div class=\"info-note\">\n<small>\u26a0\ufe0f Better social protection but higher cost for the company<\/small>\n<\/div>\n<\/div>\n<div class=\"comparison-summary\" id=\"comparison-summary\" style=\"display: none;\">\n<div class=\"summary-box\">\n<strong>Net savings with TNS status:<\/strong>\n<span class=\"economy-value\" id=\"economy-amount\">+17 000 \u20ac<\/span>\n<span class=\"economy-percent\" id=\"economy-percent\">(+136%)<\/span>\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n<script type=\"text\/javascript\">\n\/\/ Assign all main functions to the window object\nwindow.calculateTNS = function(grossIncome, activityType) {\n    let contributionRate;\n    \n    if (activityType === 'commerce') {\n        contributionRate = 0.41; \/\/ 40-42% average\n    } else {\n        contributionRate = 0.44; \/\/ 43-45% average\n    }\n    \n    const contributions = grossIncome * contributionRate;\n    const netIncome = grossIncome - contributions;\n    \n    return {\n        gross: grossIncome,\n        contributions: contributions,\n        net: netIncome,\n        rate: contributionRate * 100\n    };\n};\n\nwindow.calculateAssimileSalarie = function(grossIncome) {\n    const contributionRate = 0.75; \/\/ 70-80% average\n    const contributions = grossIncome * contributionRate;\n    const netIncome = grossIncome - contributions;\n    \n    return {\n        gross: grossIncome,\n        contributions: contributions,\n        net: netIncome,\n        rate: contributionRate * 100\n    };\n};\n\nwindow.formatCurrency = function(amount) {\n    return new Intl.NumberFormat('fr-FR', {\n        style: 'currency',\n        currency: 'EUR',\n        minimumFractionDigits: 0,\n        maximumFractionDigits: 0\n    }).format(amount);\n};\n\nwindow.updateSimulator = function() {\n    const grossIncomeInput = document.getElementById('gross-income');\n    const activityTypeSelect = document.getElementById('activity-type');\n    const showComparisonCheckbox = document.getElementById('show-comparison');\n    \n    const grossIncome = parseFloat(grossIncomeInput.value);\n    \n    if (isNaN(grossIncome) || grossIncome <0) { return; } const activityType = activityTypeSelect.value; const showComparison = showComparisonCheckbox.checked; \/\/ Calculate TNS const tnsResult = window.calculateTNS(grossIncome, activityType); \/\/ Update TNS display document.getElementById('tns-gross').textContent = window.formatCurrency(tnsResult.gross); document.getElementById('tns-rate').textContent = tnsResult.rate.toFixed(0); document.getElementById('tns-contrib').textContent = '-' + window.formatCurrency(tnsResult.contributions); document.getElementById('tns-net').textContent = window.formatCurrency(tnsResult.net); \/\/ Update TNS visual bar const tnsContribPercent = (tnsResult.contributions \/ tnsResult.gross) * 100; const tnsNetPercent = (tnsResult.net \/ tnsResult.gross) * 100; document.getElementById('tns-contrib-bar').style.width = tnsContribPercent + '%'; document.getElementById('tns-net-bar').style.width = tnsNetPercent + '%'; \/\/ Handle comparison const comparisonCard = document.getElementById('comparison-card'); const comparisonSummary = document.getElementById('comparison-summary'); if (showComparison) { comparisonCard.style.display = 'block'; comparisonSummary.style.display = 'block'; \/\/ Calculate Assimil\u00e9 Salari\u00e9 const asResult = window.calculateAssimileSalarie(grossIncome); \/\/ Update AS display document.getElementById('as-gross').textContent = window.formatCurrency(asResult.gross); document.getElementById('as-contrib').textContent = '-' + window.formatCurrency(asResult.contributions); document.getElementById('as-net').textContent = window.formatCurrency(asResult.net); \/\/ Update AS visual bar const asContribPercent = (asResult.contributions \/ asResult.gross) * 100; const asNetPercent = (asResult.net \/ asResult.gross) * 100; document.getElementById('as-contrib-bar').style.width = asContribPercent + '%'; document.getElementById('as-net-bar').style.width = asNetPercent + '%'; \/\/ Update comparison summary const economy = tnsResult.net - asResult.net; const economyPercent = ((economy \/ asResult.net) * 100); document.getElementById('economy-amount').textContent = (economy>= 0 ? '+' : '') + window.formatCurrency(economy);\n        document.getElementById('economy-percent').textContent = '(' + (economy >= 0 ? '+' : '') + economyPercent.toFixed(0) + '%)';\n    } else {\n        comparisonCard.style.display = 'none';\n        comparisonSummary.style.display = 'none';\n    }\n};\n\n\/\/ Initialize on page load\ndocument.addEventListener('DOMContentLoaded', function() {\n    const grossIncomeInput = document.getElementById('gross-income');\n    const activityTypeSelect = document.getElementById('activity-type');\n    const showComparisonCheckbox = document.getElementById('show-comparison');\n    \n    \/\/ Add event listeners\n    grossIncomeInput.addEventListener('input', window.updateSimulator);\n    activityTypeSelect.addEventListener('change', window.updateSimulator);\n    showComparisonCheckbox.addEventListener('change', window.updateSimulator);\n    \n    \/\/ Initial calculation\n    window.updateSimulator();\n});\n<\/script>\n<style type=\"text\/css\">\n.simulator-wrapper {\n    font-family: Poppins, sans-serif;\n    max-width: 800px;\n    margin: 20px auto;\n    padding: 25px;\n    background: #f8f9fa;\n    border-radius: 12px;\n    box-shadow: 0 2px 8px rgba(0,0,0,0.1);\n}\n\n.simulator-wrapper .sim-header {\n    text-align: center;\n    margin-bottom: 25px;\n}\n\n.simulator-wrapper .sim-header h3 {\n    margin: 0 0 10px 0;\n    color: #2c3e50;\n    font-size: 24px;\n}\n\n.simulator-wrapper .sim-description {\n    color: #6c757d;\n    margin: 0;\n    font-size: 14px;\n}\n\n.simulator-wrapper .sim-inputs {\n    background: white;\n    padding: 20px;\n    border-radius: 8px;\n    margin-bottom: 20px;\n}\n\n.simulator-wrapper .input-group {\n    margin-bottom: 15px;\n}\n\n.simulator-wrapper .input-group:last-child {\n    margin-bottom: 0;\n}\n\n.simulator-wrapper .input-group label {\n    display: block;\n    margin-bottom: 5px;\n    font-weight: 600;\n    color: #2c3e50;\n    font-size: 14px;\n}\n\n.simulator-wrapper .input-group input[type=\"number\"],\n.simulator-wrapper .input-group select {\n    width: 100%;\n    padding: 10px;\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.simulator-wrapper .input-group input[type=\"number\"]:focus,\n.simulator-wrapper .input-group select:focus {\n    outline: none;\n    border-color: #3498db;\n}\n\n.simulator-wrapper .checkbox-group label {\n    display: flex;\n    align-items: center;\n    font-weight: 500;\n    cursor: pointer;\n}\n\n.simulator-wrapper .checkbox-group input[type=\"checkbox\"] {\n    width: 18px;\n    height: 18px;\n    margin-right: 8px;\n    cursor: pointer;\n}\n\n.simulator-wrapper .sim-results {\n    display: flex;\n    flex-direction: column;\n    gap: 15px;\n}\n\n.simulator-wrapper .result-card {\n    background: white;\n    padding: 20px;\n    border-radius: 8px;\n    box-shadow: 0 1px 4px rgba(0,0,0,0.08);\n}\n\n.simulator-wrapper .result-card h4 {\n    margin: 0 0 15px 0;\n    color: #2c3e50;\n    font-size: 18px;\n    display: flex;\n    align-items: center;\n}\n\n.simulator-wrapper .visual-bar {\n    display: flex;\n    height: 30px;\n    width: 100%;\n    border-radius: 6px;\n    overflow: hidden;\n    margin-bottom: 15px;\n    background: #ecf0f1;\n}\n\n.simulator-wrapper .bar-segment {\n    height: 100%;\n    transition: width 0.4s ease;\n}\n\n.simulator-wrapper .contributions-bar {\n    background: linear-gradient(135deg, #e74c3c, #c0392b);\n}\n\n.simulator-wrapper .net-bar {\n    background: linear-gradient(135deg, #27ae60, #229954);\n}\n\n.simulator-wrapper .contributions-bar-high {\n    background: linear-gradient(135deg, #e74c3c, #c0392b);\n}\n\n.simulator-wrapper .net-bar-low {\n    background: linear-gradient(135deg, #27ae60, #229954);\n}\n\n.simulator-wrapper .result-details {\n    display: flex;\n    flex-direction: column;\n    gap: 10px;\n}\n\n.simulator-wrapper .result-row {\n    display: flex;\n    justify-content: space-between;\n    padding: 8px 0;\n    border-bottom: 1px solid #ecf0f1;\n}\n\n.simulator-wrapper .result-row:last-child {\n    border-bottom: none;\n}\n\n.simulator-wrapper .result-row .label {\n    color: #6c757d;\n    font-size: 14px;\n}\n\n.simulator-wrapper .result-row .value {\n    font-weight: 700;\n    font-size: 16px;\n    color: #2c3e50;\n}\n\n.simulator-wrapper .result-row.highlight-contrib {\n    background: #ffebee;\n    padding: 10px;\n    margin: 5px -10px;\n    border-radius: 4px;\n}\n\n.simulator-wrapper .result-row.highlight-net {\n    background: #e8f5e9;\n    padding: 10px;\n    margin: 5px -10px;\n    border-radius: 4px;\n}\n\n.simulator-wrapper .value.negative {\n    color: #e74c3c;\n}\n\n.simulator-wrapper .value.positive {\n    color: #27ae60;\n}\n\n.simulator-wrapper .info-note {\n    margin-top: 10px;\n    padding: 10px;\n    background: #fff3cd;\n    border-radius: 4px;\n    text-align: center;\n}\n\n.simulator-wrapper .info-note small {\n    color: #856404;\n}\n\n.simulator-wrapper .comparison-summary {\n    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);\n    padding: 20px;\n    border-radius: 8px;\n    text-align: center;\n    color: white;\n}\n\n.simulator-wrapper .summary-box strong {\n    display: block;\n    font-size: 16px;\n    margin-bottom: 10px;\n}\n\n.simulator-wrapper .economy-value {\n    display: block;\n    font-size: 32px;\n    font-weight: 700;\n    margin-bottom: 5px;\n}\n\n.simulator-wrapper .economy-percent {\n    font-size: 18px;\n    opacity: 0.9;\n}\n\n@media (max-width: 600px) {\n    .simulator-wrapper {\n        padding: 15px;\n    }\n    \n    .simulator-wrapper .sim-header h3 {\n        font-size: 20px;\n    }\n    \n    .simulator-wrapper .result-row {\n        flex-direction: column;\n        gap: 5px;\n    }\n    \n    .simulator-wrapper .economy-value {\n        font-size: 24px;\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>The remuneration of self-employed workers (TNS) raises many questions, particularly concerning the distinction between gross and net pay. Unlike traditional salaried employees, TNS do not receive a traditional pay slip, and their system of <g id=\"gid_0\">social security contributions<\/g> differs radically. Understanding these mechanisms is essential to optimize your <a href=\"https:\/\/www.altertax-avocats.com\/fiscalite\/gestion-sociale-et-paie\/gestion-du-personnel\/\">personnel management<\/a> and compensation strategy.  <\/p><h2>What is the TNS gross\/net salary?<\/h2><p>Unlike salaried employees, a self-employed worker does not receive a salary in the legal sense, but a remuneration derived from his or her professional activity. Gross income&#8221; corresponds to taxable profit before deduction of personal social security contributions, while &#8220;net income&#8221; represents what is actually available after payment of <g id=\"gid_0\">compulsory deductions<\/g> (social security contributions). These contributions, calculated on declared professional income, represent on average 40 to 45% of gross income, which means that a TNS retains around 55 to 60% of his profit after <a href=\"https:\/\/www.altertax-avocats.com\/contribution-sociale\/\">social security contributions<\/a>.  <\/p><h2>The specificities of TNS status in terms of remuneration<\/h2><p>TNS include majority owners of SARLs, sole proprietors, craftsmen, shopkeepers and the <a href=\"https:\/\/www.altertax-avocats.com\/fiscalite\/services-professionnels-comptables\">liberal professions<\/a>, each of which is covered by a specific social security regime affecting the calculation of their net remuneration. Unlike salaried employees, they do not benefit from withholding tax, and must set aside their own social security contributions, calculated on income for year N-2 and adjusted the following year, requiring rigorous cash management. <\/p><h3>Social security schemes for self-employed workers<\/h3><p>The S\u00e9curit\u00e9 Sociale des Ind\u00e9pendants (SSI) scheme applies to craftsmen, shopkeepers and managing directors, while the liberal professions are covered by CIPAV or other specific funds. These schemes have varying contribution rates, generally between 40% and 45% of professional <a href=\"https:\/\/www.altertax-avocats.com\/impots-sur-le-revenu\/\">income<\/a>. Contributions cover health, family, retirement and provident benefits, as well as <g id=\"gid_1\">social contributions<\/g> (CSG-CRDS). Unlike salaried employees, self-employed workers do not contribute to unemployment insurance, unless they choose to do so voluntarily.   <\/p><h2>Practical calculation of the change from gross to net income for a self-employed worker<\/h2><p>To estimate your net remuneration as a self-employed worker, you need to apply a social security contribution rate to your professional income. On average, a TNS retains around 55% to 60% of its gross income after payment of compulsory social security contributions. <\/p><p>Let&#8217;s take two concrete examples: for a business profit of 50,000 euros, social security contributions will amount to approximately 22,000 euros (44%), leaving a net disposable income of 28,000 euros. For an income of 80,000 euros, social security contributions will be around 36,000 euros (45%), leaving a net income of 44,000 euros. These rates vary according to your activity (retailer, craftsman, liberal profession) and the contribution ceilings applicable to each scheme.  <\/p><h3>Factors affecting the calculation<\/h3><p>Several factors influence the final amount of contributions: the type of activity carried out, the tax system chosen (actual or micro-enterprise), previous income used as a basis for calculation, and any exemptions (ACRE, ZFU). TNS can also deduct their actual <a href=\"https:\/\/www.altertax-avocats.com\/frais-professionnels\/\">professional expenses<\/a> to optimize the basis for calculating social security contributions. Managing these parameters requires expertise in <a href=\"https:\/\/www.altertax-avocats.com\/fiscalite\/gestion-sociale-et-paie\/\">payroll and social management<\/a>.  <\/p><h2>Optimizing TNS remuneration: tax and social security strategies<\/h2><p>There are a number of tax and social security levers that can be used to maximize the net disposable income of self-employed workers, while complying with all applicable regulations. In particular, a remuneration-dividend strategy is a preferred option for the majority owners of companies subject to<g id=\"gid_0\">corporate income tax<\/g>. Dividends benefit from advantageous social security treatment: subject to 17.2% social security deductions, they are exempt from traditional social security contributions up to a <g id=\"gid_1\">threshold of<\/g> 10% of share capital, additional paid-in capital and sums paid into partners&#8217; current accounts. Above this threshold, the excess amount is subject to social security contributions in the same way as standard remuneration.   <\/p><h3>Benefits in kind and business expenses<\/h3><p>Self-employed workers can optimize their remuneration by including <a href=\"https:\/\/www.altertax-avocats.com\/fiscalite\/gestion-sociale-et-paie\/avantages-sociaux-et-frais-professionnels\/\">fringe benefits and professional expenses<\/a> in their package. Company cars, business telephones and <a href=\"https:\/\/www.altertax-avocats.com\/frais-reels-deductibles\/\">deductible actual expenses<\/a> are all tax and social security optimization levers that can be used to reduce the tax base. <\/p><h2>Reporting obligations and payment of contributions<\/h2><p>Each year, generally between April and June, self-employed workers are required to make a DSI (d\u00e9claration sociale des ind\u00e9pendants) to regularize their <a href=\"https:\/\/www.altertax-avocats.com\/en\/social-security-contributions-2\/\">social security contributions<\/a>. Payment is made monthly or quarterly, depending on the option chosen, to smooth the <a href=\"https:\/\/www.altertax-avocats.com\/charge-fiscale-totale\/\">financial burden<\/a> throughout the year. Late payment entails surcharges and penalties, which should be avoided through rigorous management.  <\/p><p>An annual adjustment takes place as soon as the actual income is known: a supplement will be requested in the event of an increase, or a refund granted in the event of a drop in activity. This mechanism requires constant anticipation to preserve cash flow and avoid financial difficulties. <\/p><p>Self-employed workers must also take into account the impact of their remuneration on their <a href=\"https:\/\/www.altertax-avocats.com\/taux-marginal-dimposition\/\">marginal tax rate<\/a>, as professional income is added to the other income of the tax household to determine income tax.<\/p><h2>Differences between TNS and assimilated employees<\/h2><p>Managers who are assimilated to salaried employees (minority managers of SARLs, chairmen of SASs) benefit from a different social security system, aligned with that of salaried employees. Their <a href=\"https:\/\/www.altertax-avocats.com\/en\/social-security-contributions\/\">social security contributions<\/a> are higher, reaching around 70% to 80% of gross salary, compared with 40-45% for self-employed workers. In return, their social protection is generally more extensive, particularly in terms of retirement and unemployment insurance. For the same level of gross remuneration, a TNS will retain more net income than an assimilated employee, but with less social coverage. The choice of status therefore depends directly on the trade-off between optimizing immediate disposable income and the desired level of social protection, with a significant impact on the company&#8217;s cash flow and the manager&#8217;s personal security.    <\/p><h3>Simplified comparison table<\/h3><table><thead><tr><th>Criteria<\/th><th>TNS<\/th><th>Assimilated employee<\/th><\/tr><\/thead><tbody><tr><td>Contribution rates<\/td><td>40-45%<\/td><td>70-80%<\/td><\/tr><tr><td>Net income (per \u20ac100 gross)<\/td><td>55-60\u20ac<\/td><td>45-50\u20ac<\/td><\/tr><tr><td>Social protection<\/td><td>Standard<\/td><td>Scope<\/td><\/tr><tr><td>Unemployment insurance<\/td><td>No (except option)<\/td><td>Yes<\/td><\/tr><tr><td>Retirement<\/td><td>Less favorable<\/td><td>More favorable<\/td><\/tr><\/tbody><\/table><p><em>Note: For assimilated employees, net income is calculated on the basis of gross salary before employer&#8217;s contributions. The total cost to the company is therefore higher than the amount shown. <\/em><\/p><p>This comparison must be tailored to your specific situation. The support of an <a href=\"https:\/\/www.altertax-avocats.com\/fiscalite\/services-professionnels-comptables\/tenue-comptable-revision-fiscalite-d-entreprise\">expert<\/a> can help you make the most appropriate choices. <\/p><h2>Optimize your TNS status with expert support<\/h2><p>Mastering the gross\/net remuneration system for self-employed workers is a key factor in optimizing your tax and social security situation. The trade-off between direct remuneration, dividends and benefits in kind requires a global approach that takes into account your <g id=\"gid_0\">direct taxation<\/g> and your wealth objectives. An <a href=\"https:\/\/www.altertax-avocats.com\/taxation-optimale\/\">optimal taxation<\/a> strategy maximizes your disposable income while securing your long-term social protection.  <\/p><p>Faced with the complexity of contribution mechanisms and regular legislative changes, specialized support in tax and social law helps you to structure your remuneration in an efficient and compliant way. The aim: to avoid costly mistakes and continually adapt your strategy to the evolution of your business. <\/p>\n        <\/div>\n        <div id=\"FAQ-Zloop\">\n        <div>\n<h2>Frequently asked questions<\/h2>\n<p>The remuneration of self-employed workers (TNS) raises many questions about the transition from gross to net salary and the specificities of this status. Here are the answers to the most frequently asked questions about TNS remuneration. <\/p>\n<h3>What are TNS gross and net salaries?<\/h3>\n<p>The gross salary of a self-employed worker corresponds to the remuneration before deduction of compulsory social security contributions. The net salary represents the sum actually received after payment of these contributions. Unlike salaried employees, self-employed workers (i.e. managers of limited liability companies, sole traders and the liberal professions) do not have a standard pay slip. Their remuneration is subject to self-employed workers&#8217; social security contributions, calculated on the basis of their declared professional income, with charges generally ranging from 40% to 45% of gross income.   <\/p>\n<h3>How do you calculate the net salary of a self-employed worker from the gross salary?<\/h3>\n<p>To calculate the net salary of a self-employed worker, all compulsory social security contributions must be deducted from gross income: health and maternity insurance, family allowances, basic and supplementary pensions, disability and death, CSG-CRDS and professional training contributions. On average, the conversion coefficient is around 55% to 60%, which means that a self-employed worker will receive between 55 and 60 euros net for every 100 euros of declared gross income. This rate varies according to the social security regime (SSI or CIPAV) and the level of remuneration.  <\/p>\n<h3>What is the difference between the remuneration of a self-employed worker and that of a traditional employee?<\/h3>\n<p>The main difference lies in the rate of social charges: around 22% for an employee versus 40-45% for a self-employed worker. However, self-employed workers have greater flexibility in setting their remuneration, and benefit from specific tax advantages. Employees benefit from more extensive social protection (unemployment insurance in particular), while self-employed workers have access to tailored social protection schemes. The optimum remuneration strategy depends on personal circumstances, wealth objectives and the legal structure chosen.   <\/p>\n<h3>What social security charges will apply to self-employed workers in 2024?<\/h3>\n<p>In 2024, TNS (self-employed workers) under the SSI (S\u00e9curit\u00e9 Sociale des Ind\u00e9pendants) scheme are subject to several contributions: sickness-maternity (variable according to income), family allowances (0% to 3.10%), basic pension (17.75%), supplementary pension (7% to 8%), invalidity-death (1.30%), CSG-CRDS (9.70%) and professional training (0.25% to 0.34%). The overall rate varies between 40% and 45% of professional income. Liberal professions covered by CIPAV have slightly different rates. These contributions are calculated provisionally, then adjusted the following year on the basis of actual income.   <\/p>\n<h3>How can I optimize my remuneration as a self-employed worker from a tax point of view?<\/h3>\n<p>Optimizing TNS remuneration requires a global approach combining several levers: arbitration between remuneration and dividends, use of deductible retirement savings schemes (PER, Madelin), optimization of deductible expenses, choice of appropriate tax regime (micro-enterprise, simplified or normal real), and appropriate legal structuring. An effective strategy must take into account the need for immediate cash flow, social protection objectives, building up retirement assets and optimizing the overall tax burden. Understanding the mechanisms of <a href=\"https:\/\/www.altertax-avocats.com\/fiscalite-progressive\/\">progressive taxation<\/a> also enables you to adapt your remuneration to minimize taxation. The support of a tax expert can help you develop a personalized strategy.   <\/p>\n<h3>What tools should you use to calculate and manage your TNS remuneration?<\/h3>\n<p>Several tools make it easier to calculate TNS remuneration: online simulators from social security bodies (URSSAF, SSI), integrated accounting management software, calculators developed by chartered accountants, and applications dedicated to the self-employed. However, the complexity of the French social and tax system, frequent regulatory changes and possible optimization strategies make it essential to be accompanied by qualified professionals. A chartered accountant and a tax consultant can help you secure your calculations, anticipate deadlines and optimize your compensation structure in line with your personal and professional objectives.  <\/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\/fiscalite\/\"><span class=\"parentarianezloop\">Taxation<\/span><\/a><\/p><p><a href=\"https:\/\/www.altertax-avocats.com\/fiscalite\/gestion-sociale-et-paie\/\"><span class=\"parentarianezloop\">Gestion Sociale Et Paie<\/span><\/a><\/p>\n            <div id=\"ariane-enfant\">\n            <p><a href=\"https:\/\/www.altertax-avocats.com\/fiscalite\/gestion-sociale-et-paie\/salaire-tns-brut-net\/\"><span class=\"parentarianezloop\">Salary Tns Gross Net<\/span><\/a><\/p>\n            <ul>\n            \n            <\/ul>\n            <\/div>\n            <\/div>\n        <\/div>\n        \n","protected":false},"excerpt":{"rendered":"<p>TNS Gross \/ Net Salary: Understanding the Remuneration of Self-Employed Workers \ud83e\uddee TNS Gross \/ Net Simulator Calculate your net remuneration as a self-employed worker Gross annual professional income (\u20ac) Type of business Craftsman \/ Shopkeeper (40-42%)Liberal profession (43-45%) Compare with Assimil\u00e9 Salari\u00e9 status \ud83d\udcbc TNS status Gross income: 50 000 \u20ac Social security contributions(41%): [&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":[382],"tags":[],"class_list":["post-8256","post","type-post","status-publish","format-standard","hentry","category-taxation"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>TNS Gross Net Salary: Calculate &amp; Optimize (Guide) - Altertax Avocats<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.altertax-avocats.com\/en\/tns-gross-net-salary-calculate-optimize-guide\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"TNS Gross Net Salary: Calculate &amp; Optimize (Guide) - Altertax Avocats\" \/>\n<meta property=\"og:description\" content=\"TNS Gross \/ Net Salary: Understanding the Remuneration of Self-Employed Workers \ud83e\uddee TNS Gross \/ Net Simulator Calculate your net remuneration as a self-employed worker Gross annual professional income (\u20ac) Type of business Craftsman \/ Shopkeeper (40-42%)Liberal profession (43-45%) Compare with Assimil\u00e9 Salari\u00e9 status \ud83d\udcbc TNS status Gross income: 50 000 \u20ac Social security contributions(41%): [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.altertax-avocats.com\/en\/tns-gross-net-salary-calculate-optimize-guide\/\" \/>\n<meta property=\"og:site_name\" content=\"Altertax Avocats\" \/>\n<meta property=\"article:published_time\" content=\"2025-11-17T16:38:23+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=\"9 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\\\/tns-gross-net-salary-calculate-optimize-guide\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.altertax-avocats.com\\\/en\\\/tns-gross-net-salary-calculate-optimize-guide\\\/\"},\"author\":{\"name\":\"Equipe de AlterTax Avocats\",\"@id\":\"https:\\\/\\\/www.altertax-avocats.com\\\/en\\\/#\\\/schema\\\/person\\\/bbfb0f93f3e05c30485cf20fa2dff731\"},\"headline\":\"TNS Gross Net Salary: Calculate &amp; Optimize (Guide)\",\"datePublished\":\"2025-11-17T16:38:23+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.altertax-avocats.com\\\/en\\\/tns-gross-net-salary-calculate-optimize-guide\\\/\"},\"wordCount\":1835,\"publisher\":{\"@id\":\"https:\\\/\\\/www.altertax-avocats.com\\\/en\\\/#organization\"},\"articleSection\":[\"Taxation\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.altertax-avocats.com\\\/en\\\/tns-gross-net-salary-calculate-optimize-guide\\\/\",\"url\":\"https:\\\/\\\/www.altertax-avocats.com\\\/en\\\/tns-gross-net-salary-calculate-optimize-guide\\\/\",\"name\":\"TNS Gross Net Salary: Calculate &amp; Optimize (Guide) - Altertax Avocats\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.altertax-avocats.com\\\/en\\\/#website\"},\"datePublished\":\"2025-11-17T16:38:23+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.altertax-avocats.com\\\/en\\\/tns-gross-net-salary-calculate-optimize-guide\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.altertax-avocats.com\\\/en\\\/tns-gross-net-salary-calculate-optimize-guide\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.altertax-avocats.com\\\/en\\\/tns-gross-net-salary-calculate-optimize-guide\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Accueil\",\"item\":\"https:\\\/\\\/www.altertax-avocats.com\\\/en\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"TNS Gross Net Salary: Calculate &amp; Optimize (Guide)\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.altertax-avocats.com\\\/en\\\/#website\",\"url\":\"https:\\\/\\\/www.altertax-avocats.com\\\/en\\\/\",\"name\":\"Altertax Avocats\",\"description\":\"Avocats Fiscalistes Paris, Droit Fiscal\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.altertax-avocats.com\\\/en\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.altertax-avocats.com\\\/en\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.altertax-avocats.com\\\/en\\\/#organization\",\"name\":\"ALTERTAX\",\"alternateName\":\"AlterTax Avocats\",\"url\":\"https:\\\/\\\/www.altertax-avocats.com\\\/en\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.altertax-avocats.com\\\/en\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.altertax-avocats.com\\\/wp-content\\\/uploads\\\/2024\\\/01\\\/logo-emblem-altertax-avocats.png\",\"contentUrl\":\"https:\\\/\\\/www.altertax-avocats.com\\\/wp-content\\\/uploads\\\/2024\\\/01\\\/logo-emblem-altertax-avocats.png\",\"width\":912,\"height\":672,\"caption\":\"ALTERTAX\"},\"image\":{\"@id\":\"https:\\\/\\\/www.altertax-avocats.com\\\/en\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.linkedin.com\\\/company\\\/altertax-avocats\\\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.altertax-avocats.com\\\/en\\\/#\\\/schema\\\/person\\\/bbfb0f93f3e05c30485cf20fa2dff731\",\"name\":\"Equipe de AlterTax Avocats\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/8ed93df48bf80b68ecf1c66be3eb65c16a34c10d761d8160949214a7913d5907?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/8ed93df48bf80b68ecf1c66be3eb65c16a34c10d761d8160949214a7913d5907?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/8ed93df48bf80b68ecf1c66be3eb65c16a34c10d761d8160949214a7913d5907?s=96&d=mm&r=g\",\"caption\":\"Equipe de AlterTax Avocats\"},\"description\":\"Avec 25 ans d'exp\u00e9rience en droit fiscal, notamment dans de grands cabinets fran\u00e7ais et internationaux, je fournis des conseils sur-mesure en fiscalit\u00e9. Ma passion et mon implication me permettent d'accompagner efficacement les entreprises fran\u00e7aises dans leur expansion internationale, ainsi que les groupes \u00e9trangers et multinationales dans leurs op\u00e9rations transfrontali\u00e8res et de r\u00e9organisation. Je conseille \u00e9galement les personnes physiques pour la gestion de leur patrimoine et leur planification successorale. Mon expertise s'\u00e9tend au contentieux fiscal devant les juridictions administratives et civiles.\",\"sameAs\":[\"https:\\\/\\\/www.altertax-avocats.com\",\"https:\\\/\\\/www.linkedin.com\\\/in\\\/cyril-maucour\\\/\"],\"url\":\"https:\\\/\\\/www.altertax-avocats.com\\\/notre-equipe\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"TNS Gross Net Salary: Calculate &amp; Optimize (Guide) - Altertax Avocats","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.altertax-avocats.com\/en\/tns-gross-net-salary-calculate-optimize-guide\/","og_locale":"en_US","og_type":"article","og_title":"TNS Gross Net Salary: Calculate &amp; Optimize (Guide) - Altertax Avocats","og_description":"TNS Gross \/ Net Salary: Understanding the Remuneration of Self-Employed Workers \ud83e\uddee TNS Gross \/ Net Simulator Calculate your net remuneration as a self-employed worker Gross annual professional income (\u20ac) Type of business Craftsman \/ Shopkeeper (40-42%)Liberal profession (43-45%) Compare with Assimil\u00e9 Salari\u00e9 status \ud83d\udcbc TNS status Gross income: 50 000 \u20ac Social security contributions(41%): [&hellip;]","og_url":"https:\/\/www.altertax-avocats.com\/en\/tns-gross-net-salary-calculate-optimize-guide\/","og_site_name":"Altertax Avocats","article_published_time":"2025-11-17T16:38:23+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":"9 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.altertax-avocats.com\/en\/tns-gross-net-salary-calculate-optimize-guide\/#article","isPartOf":{"@id":"https:\/\/www.altertax-avocats.com\/en\/tns-gross-net-salary-calculate-optimize-guide\/"},"author":{"name":"Equipe de AlterTax Avocats","@id":"https:\/\/www.altertax-avocats.com\/en\/#\/schema\/person\/bbfb0f93f3e05c30485cf20fa2dff731"},"headline":"TNS Gross Net Salary: Calculate &amp; Optimize (Guide)","datePublished":"2025-11-17T16:38:23+00:00","mainEntityOfPage":{"@id":"https:\/\/www.altertax-avocats.com\/en\/tns-gross-net-salary-calculate-optimize-guide\/"},"wordCount":1835,"publisher":{"@id":"https:\/\/www.altertax-avocats.com\/en\/#organization"},"articleSection":["Taxation"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.altertax-avocats.com\/en\/tns-gross-net-salary-calculate-optimize-guide\/","url":"https:\/\/www.altertax-avocats.com\/en\/tns-gross-net-salary-calculate-optimize-guide\/","name":"TNS Gross Net Salary: Calculate &amp; Optimize (Guide) - Altertax Avocats","isPartOf":{"@id":"https:\/\/www.altertax-avocats.com\/en\/#website"},"datePublished":"2025-11-17T16:38:23+00:00","breadcrumb":{"@id":"https:\/\/www.altertax-avocats.com\/en\/tns-gross-net-salary-calculate-optimize-guide\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.altertax-avocats.com\/en\/tns-gross-net-salary-calculate-optimize-guide\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.altertax-avocats.com\/en\/tns-gross-net-salary-calculate-optimize-guide\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https:\/\/www.altertax-avocats.com\/en\/"},{"@type":"ListItem","position":2,"name":"TNS Gross Net Salary: Calculate &amp; Optimize (Guide)"}]},{"@type":"WebSite","@id":"https:\/\/www.altertax-avocats.com\/en\/#website","url":"https:\/\/www.altertax-avocats.com\/en\/","name":"Altertax Avocats","description":"Avocats Fiscalistes Paris, Droit Fiscal","publisher":{"@id":"https:\/\/www.altertax-avocats.com\/en\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.altertax-avocats.com\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.altertax-avocats.com\/en\/#organization","name":"ALTERTAX","alternateName":"AlterTax Avocats","url":"https:\/\/www.altertax-avocats.com\/en\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.altertax-avocats.com\/en\/#\/schema\/logo\/image\/","url":"https:\/\/www.altertax-avocats.com\/wp-content\/uploads\/2024\/01\/logo-emblem-altertax-avocats.png","contentUrl":"https:\/\/www.altertax-avocats.com\/wp-content\/uploads\/2024\/01\/logo-emblem-altertax-avocats.png","width":912,"height":672,"caption":"ALTERTAX"},"image":{"@id":"https:\/\/www.altertax-avocats.com\/en\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.linkedin.com\/company\/altertax-avocats\/"]},{"@type":"Person","@id":"https:\/\/www.altertax-avocats.com\/en\/#\/schema\/person\/bbfb0f93f3e05c30485cf20fa2dff731","name":"Equipe de AlterTax Avocats","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/8ed93df48bf80b68ecf1c66be3eb65c16a34c10d761d8160949214a7913d5907?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/8ed93df48bf80b68ecf1c66be3eb65c16a34c10d761d8160949214a7913d5907?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/8ed93df48bf80b68ecf1c66be3eb65c16a34c10d761d8160949214a7913d5907?s=96&d=mm&r=g","caption":"Equipe de AlterTax Avocats"},"description":"Avec 25 ans d'exp\u00e9rience en droit fiscal, notamment dans de grands cabinets fran\u00e7ais et internationaux, je fournis des conseils sur-mesure en fiscalit\u00e9. Ma passion et mon implication me permettent d'accompagner efficacement les entreprises fran\u00e7aises dans leur expansion internationale, ainsi que les groupes \u00e9trangers et multinationales dans leurs op\u00e9rations transfrontali\u00e8res et de r\u00e9organisation. Je conseille \u00e9galement les personnes physiques pour la gestion de leur patrimoine et leur planification successorale. Mon expertise s'\u00e9tend au contentieux fiscal devant les juridictions administratives et civiles.","sameAs":["https:\/\/www.altertax-avocats.com","https:\/\/www.linkedin.com\/in\/cyril-maucour\/"],"url":"https:\/\/www.altertax-avocats.com\/notre-equipe\/"}]}},"_links":{"self":[{"href":"https:\/\/www.altertax-avocats.com\/en\/wp-json\/wp\/v2\/posts\/8256","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=8256"}],"version-history":[{"count":0,"href":"https:\/\/www.altertax-avocats.com\/en\/wp-json\/wp\/v2\/posts\/8256\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.altertax-avocats.com\/en\/wp-json\/wp\/v2\/media?parent=8256"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.altertax-avocats.com\/en\/wp-json\/wp\/v2\/categories?post=8256"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.altertax-avocats.com\/en\/wp-json\/wp\/v2\/tags?post=8256"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}