{"id":16,"date":"2026-04-15T12:13:40","date_gmt":"2026-04-15T12:13:40","guid":{"rendered":"https:\/\/fintech-revo.org\/?page_id=16"},"modified":"2026-04-15T12:34:50","modified_gmt":"2026-04-15T12:34:50","slug":"fintech-credit-utilisation-calculator-2","status":"publish","type":"page","link":"https:\/\/fintech-revo.org\/","title":{"rendered":"Fintech Loan Eligibility Checker"},"content":{"rendered":"\n<h1 style=\"background: linear-gradient(135deg, #ff6a00, #ee0979); color: #fff; padding: 18px 24px; border-radius: 8px; font-family: 'Georgia', serif; font-size: 2em; margin-bottom: 16px;\">Fintech Loan Eligibility Checker<\/h1>\n\n<p>Use this <strong>Fintech Loan Eligibility Checker<\/strong> to find out how much you could borrow based on your real income and expenses. Enter your numbers below and get an instant result.<\/p>\n\n<!-- TOOL SECTION -->\n<div style=\"background: #fff7f0; border: 2px solid #ff6a00; border-radius: 10px; padding: 28px 24px; margin: 28px 0; max-width: 520px;\">\n  <h2 style=\"color: #ff6a00; font-family: 'Georgia', serif; margin-top: 0; font-size: 1.3em; border-bottom: 2px solid #ff6a00; padding-bottom: 8px;\">Check Your Loan Eligibility<\/h2>\n  <div style=\"margin-bottom: 16px;\">\n    <label for=\"fli-income\" style=\"display:block; font-weight:bold; margin-bottom:4px; color:#333;\">Monthly Income (\u00a3)<\/label>\n    <input id=\"fli-income\" type=\"number\" min=\"0\" placeholder=\"e.g. 3000\" style=\"width:100%; padding:10px 12px; border:1.5px solid #ffb380; border-radius:6px; font-size:1em; box-sizing:border-box; outline:none;\" \/>\n  <\/div>\n  <div style=\"margin-bottom: 16px;\">\n    <label for=\"fli-expenses\" style=\"display:block; font-weight:bold; margin-bottom:4px; color:#333;\">Monthly Expenses (\u00a3)<\/label>\n    <input id=\"fli-expenses\" type=\"number\" min=\"0\" placeholder=\"e.g. 1200\" style=\"width:100%; padding:10px 12px; border:1.5px solid #ffb380; border-radius:6px; font-size:1em; box-sizing:border-box; outline:none;\" \/>\n  <\/div>\n  <div style=\"margin-bottom: 20px;\">\n    <label for=\"fli-debt\" style=\"display:block; font-weight:bold; margin-bottom:4px; color:#333;\">Existing Monthly Debt Payments (\u00a3)<\/label>\n    <input id=\"fli-debt\" type=\"number\" min=\"0\" placeholder=\"e.g. 300\" style=\"width:100%; padding:10px 12px; border:1.5px solid #ffb380; border-radius:6px; font-size:1em; box-sizing:border-box; outline:none;\" \/>\n  <\/div>\n  <button onclick=\"calcFLI()\" style=\"width:100%; background: linear-gradient(135deg, #ff6a00, #ee0979); color:#fff; border:none; padding:13px; border-radius:7px; font-size:1.08em; font-weight:bold; cursor:pointer; letter-spacing:0.5px;\">Calculate Eligibility<\/button>\n  <div id=\"fli-result\" style=\"display:none; margin-top:20px; padding:16px; border-radius:8px; font-size:1em;\"><\/div>\n<\/div>\n\n<script>\nfunction calcFLI() {\n  var income = parseFloat(document.getElementById('fli-income').value) || 0;\n  var expenses = parseFloat(document.getElementById('fli-expenses').value) || 0;\n  var debt = parseFloat(document.getElementById('fli-debt').value) || 0;\n  var resultDiv = document.getElementById('fli-result');\n\n  if (income <= 0) {\n    resultDiv.style.display = 'block';\n    resultDiv.style.background = '#fff0f0';\n    resultDiv.style.border = '1.5px solid #f00';\n    resultDiv.style.color = '#c00';\n    resultDiv.innerHTML = '<strong>Please enter a valid monthly income.<\/strong>';\n    return;\n  }\n\n  var netDisposable = income - (expenses + debt);\n  var loanAmount = netDisposable * 20;\n\n  var status, statusColor, bgColor, borderColor;\n\n  if (netDisposable >= income * 0.4) {\n    status = '\u2705 High Eligibility \u2014 Strong borrowing capacity.';\n    statusColor = '#1a7a1a';\n    bgColor = '#f0fff0';\n    borderColor = '#4caf50';\n  } else if (netDisposable >= income * 0.2) {\n    status = '\u26a0\ufe0f Moderate Eligibility \u2014 Balanced income vs expenses.';\n    statusColor = '#7a5a00';\n    bgColor = '#fffbf0';\n    borderColor = '#ff9800';\n  } else if (netDisposable > 0) {\n    status = '\ud83d\udd34 Low Eligibility \u2014 Limited borrowing capacity.';\n    statusColor = '#a00';\n    bgColor = '#fff5f5';\n    borderColor = '#f44336';\n  } else {\n    status = '\u274c Not Eligible \u2014 Expenses exceed income.';\n    statusColor = '#a00';\n    bgColor = '#fff0f0';\n    borderColor = '#f00';\n  }\n\n  resultDiv.style.display = 'block';\n  resultDiv.style.background = bgColor;\n  resultDiv.style.border = '1.5px solid ' + borderColor;\n  resultDiv.style.color = '#222';\n\n  if (loanAmount > 0) {\n    resultDiv.innerHTML =\n      '<p style=\"margin:0 0 8px;\"><strong>Net Disposable Income:<\/strong> \u00a3' + netDisposable.toFixed(2) + ' \/ month<\/p>' +\n      '<p style=\"margin:0 0 8px;\"><strong>Estimated Eligible Loan Amount:<\/strong> <span style=\"font-size:1.2em; color:#ff6a00; font-weight:bold;\">\u00a3' + loanAmount.toLocaleString(undefined, {minimumFractionDigits:2, maximumFractionDigits:2}) + '<\/span><\/p>' +\n      '<p style=\"margin:0; color:' + statusColor + '; font-weight:bold;\">' + status + '<\/p>';\n  } else {\n    resultDiv.innerHTML =\n      '<p style=\"margin:0; color:' + statusColor + '; font-weight:bold;\">' + status + '<\/p>';\n  }\n}\n<\/script>\n\n<!-- HOW TO USE -->\n<h2 style=\"color: #fff; background: linear-gradient(135deg, #ff6a00, #ee0979); padding: 12px 20px; border-radius: 7px; font-family: 'Georgia', serif; font-size: 1.3em; margin-top: 36px;\">How do you use Fintech Loan Eligibility Checker?<\/h2>\n\n<ol style=\"line-height:1.9; padding-left:20px;\">\n  <li>Enter your total monthly income in the first field.<\/li>\n  <li>Add your fixed and variable monthly expenses in the second field.<\/li>\n  <li>Enter any existing monthly debt or loan repayment amounts.<\/li>\n  <li>Click the <strong>Calculate Eligibility<\/strong> button.<\/li>\n  <li>Read your estimated eligible loan amount and eligibility status instantly.<\/li>\n  <li>Adjust the numbers to see how reducing expenses affects your result.<\/li>\n<\/ol>\n\n<!-- FEATURES TABLE -->\n<h2 style=\"color: #fff; background: linear-gradient(135deg, #ff6a00, #ee0979); padding: 12px 20px; border-radius: 7px; font-family: 'Georgia', serif; font-size: 1.3em; margin-top: 36px;\">What features does Fintech Loan Eligibility Checker include?<\/h2>\n\n<table style=\"width:100%; border-collapse:collapse; margin-top:12px; font-size:0.97em;\">\n  <thead>\n    <tr style=\"background: #ff6a00; color:#fff;\">\n      <th style=\"padding:11px 14px; text-align:left; border:1px solid #ffb380;\">Feature<\/th>\n      <th style=\"padding:11px 14px; text-align:left; border:1px solid #ffb380;\">What It Does<\/th>\n    <\/tr>\n  <\/thead>\n  <tbody>\n    <tr style=\"background:#fff7f0;\">\n      <td style=\"padding:10px 14px; border:1px solid #ffd6b3;\"><strong>Income Input<\/strong><\/td>\n      <td style=\"padding:10px 14px; border:1px solid #ffd6b3;\">Captures your gross monthly income as the starting point for eligibility.<\/td>\n    <\/tr>\n    <tr>\n      <td style=\"padding:10px 14px; border:1px solid #ffd6b3;\"><strong>Expense Input<\/strong><\/td>\n      <td style=\"padding:10px 14px; border:1px solid #ffd6b3;\">Deducts monthly living costs to calculate real disposable income.<\/td>\n    <\/tr>\n    <tr style=\"background:#fff7f0;\">\n      <td style=\"padding:10px 14px; border:1px solid #ffd6b3;\"><strong>Debt Payment Input<\/strong><\/td>\n      <td style=\"padding:10px 14px; border:1px solid #ffd6b3;\">Factors in existing loan repayments so the estimate reflects actual borrowing room.<\/td>\n    <\/tr>\n    <tr>\n      <td style=\"padding:10px 14px; border:1px solid #ffd6b3;\"><strong>Net Disposable Calculation<\/strong><\/td>\n      <td style=\"padding:10px 14px; border:1px solid #ffd6b3;\">Automatically subtracts expenses and debt from income to find your true available amount.<\/td>\n    <\/tr>\n    <tr style=\"background:#fff7f0;\">\n      <td style=\"padding:10px 14px; border:1px solid #ffd6b3;\"><strong>Loan Amount Estimate<\/strong><\/td>\n      <td style=\"padding:10px 14px; border:1px solid #ffd6b3;\">Multiplies net disposable income by 20 to give a realistic borrowing estimate.<\/td>\n    <\/tr>\n    <tr>\n      <td style=\"padding:10px 14px; border:1px solid #ffd6b3;\"><strong>Eligibility Status<\/strong><\/td>\n      <td style=\"padding:10px 14px; border:1px solid #ffd6b3;\">Displays a High, Moderate, or Low status so you understand your position at a glance.<\/td>\n    <\/tr>\n    <tr style=\"background:#fff7f0;\">\n      <td style=\"padding:10px 14px; border:1px solid #ffd6b3;\"><strong>Mobile-Friendly Layout<\/strong><\/td>\n      <td style=\"padding:10px 14px; border:1px solid #ffd6b3;\">Works cleanly on phones and tablets without any extra configuration.<\/td>\n    <\/tr>\n  <\/tbody>\n<\/table>\n\n<!-- BENEFITS -->\n<h2 style=\"color: #fff; background: linear-gradient(135deg, #ff6a00, #ee0979); padding: 12px 20px; border-radius: 7px; font-family: 'Georgia', serif; font-size: 1.3em; margin-top: 36px;\">What are the benefits of using Fintech Loan Eligibility Checker?<\/h2>\n\n<ul style=\"line-height:2; padding-left:20px;\">\n  <li>Get an instant estimate without filling out any application forms.<\/li>\n  <li>Understand your borrowing capacity before approaching a lender.<\/li>\n  <li>Spot the impact of existing debt on how much you can borrow.<\/li>\n  <li>Adjust your figures to model different financial scenarios.<\/li>\n  <li>Avoid wasting time applying for loans above your likely approval range.<\/li>\n  <li>Free to use with no sign-up, no data storage, and no credit check.<\/li>\n  <li>Works on any device with a web browser.<\/li>\n<\/ul>\n\n<!-- WHY CHOOSE -->\n<h2 style=\"color: #fff; background: linear-gradient(135deg, #ff6a00, #ee0979); padding: 12px 20px; border-radius: 7px; font-family: 'Georgia', serif; font-size: 1.3em; margin-top: 36px;\">Why should you choose Fintech Loan Eligibility Checker?<\/h2>\n\n<ul style=\"line-height:2; padding-left:20px;\">\n  <li>It uses a transparent formula \u2014 you can see exactly how the result is calculated.<\/li>\n  <li>No registration is required to use it.<\/li>\n  <li>The result updates immediately after you click calculate.<\/li>\n  <li>Three input fields are all it takes \u2014 there is no lengthy questionnaire.<\/li>\n  <li>The eligibility status is plain English, not financial jargon.<\/li>\n  <li>You stay in full control of your data because nothing is sent to a server.<\/li>\n<\/ul>\n\n<!-- COMPARISON TABLE -->\n<h2 style=\"color: #fff; background: linear-gradient(135deg, #ff6a00, #ee0979); padding: 12px 20px; border-radius: 7px; font-family: 'Georgia', serif; font-size: 1.3em; margin-top: 36px;\">How does Fintech Loan Eligibility Checker compare with other tools?<\/h2>\n\n<table style=\"width:100%; border-collapse:collapse; margin-top:12px; font-size:0.97em;\">\n  <thead>\n    <tr style=\"background: #ff6a00; color:#fff;\">\n      <th style=\"padding:11px 14px; text-align:left; border:1px solid #ffb380;\">Feature<\/th>\n      <th style=\"padding:11px 14px; text-align:left; border:1px solid #ffb380;\">Fintech Loan Eligibility Checker<\/th>\n      <th style=\"padding:11px 14px; text-align:left; border:1px solid #ffb380;\">Other Tools<\/th>\n    <\/tr>\n  <\/thead>\n  <tbody>\n    <tr style=\"background:#fff7f0;\">\n      <td style=\"padding:10px 14px; border:1px solid #ffd6b3;\"><strong>Sign-up required<\/strong><\/td>\n      <td style=\"padding:10px 14px; border:1px solid #ffd6b3;\">No<\/td>\n      <td style=\"padding:10px 14px; border:1px solid #ffd6b3;\">Often required<\/td>\n    <\/tr>\n    <tr>\n      <td style=\"padding:10px 14px; border:1px solid #ffd6b3;\"><strong>Credit check triggered<\/strong><\/td>\n      <td style=\"padding:10px 14px; border:1px solid #ffd6b3;\">No<\/td>\n      <td style=\"padding:10px 14px; border:1px solid #ffd6b3;\">Sometimes yes (soft or hard)<\/td>\n    <\/tr>\n    <tr style=\"background:#fff7f0;\">\n      <td style=\"padding:10px 14px; border:1px solid #ffd6b3;\"><strong>Debt factored in<\/strong><\/td>\n      <td style=\"padding:10px 14px; border:1px solid #ffd6b3;\">Yes \u2014 separate input field<\/td>\n      <td style=\"padding:10px 14px; border:1px solid #ffd6b3;\">Not always included<\/td>\n    <\/tr>\n    <tr>\n      <td style=\"padding:10px 14px; border:1px solid #ffd6b3;\"><strong>Result speed<\/strong><\/td>\n      <td style=\"padding:10px 14px; border:1px solid #ffd6b3;\">Instant, on-page<\/td>\n      <td style=\"padding:10px 14px; border:1px solid #ffd6b3;\">Email or delayed in many cases<\/td>\n    <\/tr>\n    <tr style=\"background:#fff7f0;\">\n      <td style=\"padding:10px 14px; border:1px solid #ffd6b3;\"><strong>Formula transparency<\/strong><\/td>\n      <td style=\"padding:10px 14px; border:1px solid #ffd6b3;\">Fully visible logic<\/td>\n      <td style=\"padding:10px 14px; border:1px solid #ffd6b3;\">Black-box algorithms<\/td>\n    <\/tr>\n    <tr>\n      <td style=\"padding:10px 14px; border:1px solid #ffd6b3;\"><strong>Data privacy<\/strong><\/td>\n      <td style=\"padding:10px 14px; border:1px solid #ffd6b3;\">No data stored or transmitted<\/td>\n      <td style=\"padding:10px 14px; border:1px solid #ffd6b3;\">Data often collected for marketing<\/td>\n    <\/tr>\n    <tr style=\"background:#fff7f0;\">\n      <td style=\"padding:10px 14px; border:1px solid #ffd6b3;\"><strong>Mobile usability<\/strong><\/td>\n      <td style=\"padding:10px 14px; border:1px solid #ffd6b3;\">Fully responsive<\/td>\n      <td style=\"padding:10px 14px; border:1px solid #ffd6b3;\">Variable \u2014 often poor on phones<\/td>\n    <\/tr>\n  <\/tbody>\n<\/table>\n\n<!-- EDUCATIONAL H2 WITH H3s -->\n<h2 style=\"color: #fff; background: linear-gradient(135deg, #ff6a00, #ee0979); padding: 12px 20px; border-radius: 7px; font-family: 'Georgia', serif; font-size: 1.3em; margin-top: 36px;\">What should you know before using a loan eligibility checker?<\/h2>\n\n<h3 style=\"color: #ff6a00; font-family: 'Georgia', serif; border-left: 4px solid #ff6a00; padding-left: 12px; margin-top: 24px;\">What does loan eligibility mean?<\/h3>\n<p>Loan eligibility is the maximum amount a lender considers you capable of repaying based on your income and financial obligations. It is not a guaranteed offer \u2014 it is an informed estimate. Lenders use this figure to decide whether to proceed with a full application. Your eligibility can change as your income or debts change.<\/p>\n\n<h3 style=\"color: #ff6a00; font-family: 'Georgia', serif; border-left: 4px solid #ff6a00; padding-left: 12px; margin-top: 24px;\">How does income affect borrowing capacity?<\/h3>\n<p>Higher income directly increases how much a lender will consider advancing. Lenders look at regular, verifiable income \u2014 not one-off receipts. Irregular earnings from freelance work or bonuses carry less weight than salaried income. The checker uses your stated monthly income as the primary driver of the estimate.<\/p>\n\n<h3 style=\"color: #ff6a00; font-family: 'Georgia', serif; border-left: 4px solid #ff6a00; padding-left: 12px; margin-top: 24px;\">What role do monthly expenses play in eligibility?<\/h3>\n<p>Expenses reduce your net disposable income, which directly shrinks your eligible loan amount. Fixed costs like rent, utilities, and subscriptions are taken as reliable monthly outgoings. Variable expenses such as dining and entertainment are harder for lenders to predict but still count. Keeping expenses low relative to income improves your result significantly.<\/p>\n\n<h3 style=\"color: #ff6a00; font-family: 'Georgia', serif; border-left: 4px solid #ff6a00; padding-left: 12px; margin-top: 24px;\">How does existing debt affect loan approval?<\/h3>\n<p>Existing debt payments reduce the income available for any new loan repayment. Lenders calculate a debt-to-income ratio to judge whether you are already overextended. A high existing debt load can push a lender to reduce the offer or decline entirely. This checker separates debt from general expenses so you can see its specific impact.<\/p>\n\n<h3 style=\"color: #ff6a00; font-family: 'Georgia', serif; border-left: 4px solid #ff6a00; padding-left: 12px; margin-top: 24px;\">Why do lenders check repayment capacity?<\/h3>\n<p>Lenders are required by regulation to confirm you can repay before offering credit. This protects both the lender from default risk and the borrower from unmanageable debt. Affordability assessments have become stricter since financial regulatory reforms in the UK and EU. The checker simulates this logic using the same income-minus-obligations approach.<\/p>\n\n<h3 style=\"color: #ff6a00; font-family: 'Georgia', serif; border-left: 4px solid #ff6a00; padding-left: 12px; margin-top: 24px;\">What is the difference between eligibility and approval?<\/h3>\n<p>Eligibility is an estimate based on the numbers you enter yourself. Approval is a formal decision made by a lender after verifying your documents and credit history. You can show high eligibility in this tool and still be declined if your credit score is poor. Treating eligibility as a planning guide \u2014 not a guarantee \u2014 leads to better financial decisions.<\/p>\n\n<!-- MISTAKES -->\n<h2 style=\"color: #fff; background: linear-gradient(135deg, #ff6a00, #ee0979); padding: 12px 20px; border-radius: 7px; font-family: 'Georgia', serif; font-size: 1.3em; margin-top: 36px;\">What mistakes do people make when checking loan eligibility?<\/h2>\n\n<ul style=\"line-height:2; padding-left:20px;\">\n  <li>Entering gross income instead of net take-home pay, which overstates eligibility.<\/li>\n  <li>Forgetting to include all existing debt payments such as credit card minimums or car finance.<\/li>\n  <li>Underestimating monthly expenses by leaving out irregular costs like insurance or subscriptions.<\/li>\n  <li>Treating the estimate as a confirmed loan offer and making financial commitments based on it.<\/li>\n  <li>Ignoring the impact of a low credit score, which this tool does not assess.<\/li>\n  <li>Using the tool once without adjusting figures to explore different scenarios.<\/li>\n  <li>Assuming all lenders use the same formula \u2014 individual lenders apply their own criteria.<\/li>\n<\/ul>\n\n<!-- FAQs -->\n<h2 style=\"color: #fff; background: linear-gradient(135deg, #ff6a00, #ee0979); padding: 12px 20px; border-radius: 7px; font-family: 'Georgia', serif; font-size: 1.3em; margin-top: 36px;\">FAQs<\/h2>\n\n<p><strong>Q: What is a fintech loan eligibility checker?<\/strong><br \/>\nA: It is a digital tool that estimates how much you may be able to borrow based on your income, expenses, and existing debt. The calculation uses your net disposable income as the foundation. This tool multiplies your disposable income by 20 to produce a borrowing estimate. Results vary between lenders because each applies its own underwriting criteria.<\/p>\n\n<p><strong>Q: Is the loan amount shown a guaranteed offer?<\/strong><br \/>\nA: No \u2014 the figure is an estimate based on the numbers you enter. A real loan offer depends on your credit score, employment status, and the lender&#8217;s internal policies. This tool is a planning aid, not a lending decision. Use it to set realistic expectations before you apply.<\/p>\n\n<p><strong>Q: Does using this tool affect my credit score?<\/strong><br \/>\nA: No. This checker performs no credit search of any kind. It runs entirely in your browser using only the figures you type. No information is sent to any database or lender. Your credit file is completely unaffected.<\/p>\n\n<p><strong>Q: How is net disposable income calculated?<\/strong><br \/>\nA: The tool subtracts your monthly expenses and existing debt payments from your monthly income. The remaining figure is your net disposable income. That amount is then multiplied by 20 to estimate your maximum borrowing capacity. A higher disposable income produces a higher loan estimate.<\/p>\n\n<p><strong>Q: What does a low eligibility status mean?<\/strong><br \/>\nA: It means your current expenses and debt leave limited room for additional repayments. Lenders may offer a smaller loan or request additional security in this situation. Reducing expenses or clearing existing debt before applying can improve the outcome. A low status does not mean you will be declined \u2014 it means borrowing capacity is currently restricted.<\/p>\n\n<p><strong>Q: Can I use this tool more than once to compare scenarios?<\/strong><br \/>\nA: Yes. You can enter different figures as many times as you need. Changing the expense or debt values shows how your eligibility shifts under different financial conditions. This makes the tool useful for planning debt reduction strategies before approaching a lender.<\/p>\n\n<p><strong>Q: Do all lenders use the same eligibility formula?<\/strong><br \/>\nA: No. Each lender applies its own affordability model, which may include credit history, employment type, and sector-specific risk factors. This tool uses a standard disposable income approach common across fintech lending platforms. Individual results from a lender may be higher or lower than the estimate shown here.<\/p>\n\n<p><strong>Q: Should I include irregular income in the monthly income field?<\/strong><br \/>\nA: Include only income you receive every month without fail. Lenders typically discount irregular bonuses, commission, and freelance income unless it can be evidenced consistently over 12 to 24 months. Using a conservative income figure produces an estimate closer to what a lender would actually offer. Overstating income leads to unrealistic expectations.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Fintech Loan Eligibility Checker Use this Fintech Loan Eligibility Checker to find out how much you could borrow based on your real income and expenses. Enter your numbers below and get an instant result. Check Your Loan Eligibility Monthly Income (\u00a3) Monthly Expenses (\u00a3) Existing Monthly Debt Payments (\u00a3) Calculate Eligibility How do you use&#8230;<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_kad_post_transparent":"","_kad_post_title":"hide","_kad_post_layout":"right","_kad_post_sidebar_id":"","_kad_post_content_style":"","_kad_post_vertical_padding":"","_kad_post_feature":"","_kad_post_feature_position":"","_kad_post_header":false,"_kad_post_footer":false,"_kad_post_classname":"","footnotes":""},"class_list":["post-16","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/fintech-revo.org\/index.php\/wp-json\/wp\/v2\/pages\/16","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/fintech-revo.org\/index.php\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/fintech-revo.org\/index.php\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/fintech-revo.org\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/fintech-revo.org\/index.php\/wp-json\/wp\/v2\/comments?post=16"}],"version-history":[{"count":2,"href":"https:\/\/fintech-revo.org\/index.php\/wp-json\/wp\/v2\/pages\/16\/revisions"}],"predecessor-version":[{"id":21,"href":"https:\/\/fintech-revo.org\/index.php\/wp-json\/wp\/v2\/pages\/16\/revisions\/21"}],"wp:attachment":[{"href":"https:\/\/fintech-revo.org\/index.php\/wp-json\/wp\/v2\/media?parent=16"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}