{"id":785,"date":"2022-09-09T18:47:39","date_gmt":"2022-09-09T18:47:39","guid":{"rendered":"https:\/\/web.tarleton.edu\/business\/?page_id=785"},"modified":"2026-03-12T20:06:44","modified_gmt":"2026-03-12T20:06:44","slug":"tuition-estimator","status":"publish","type":"page","link":"https:\/\/www.tarleton.edu\/business\/tuition-estimator\/","title":{"rendered":"Tuition Estimator"},"content":{"rendered":"<p class=\"advgb-dyn-8b562bfa\"><h1>Tuition Estimator<\/h1>\r\n<div class=\"section clearfix section clearfix article white\">\r\n  <div class=\"col cu6-tablet cu12-mobile white\">\r\n    <div class=\"margin-block\">\r\n      <form id=\"tuitionform\" onsubmit=\"return false;\"> \r\n      <div> \r\n        <fieldset> \r\n          <label>Student Type<\/label><br> \r\n          <label class=\"radiolabel\"><input type=\"radio\" name=\"Student\" value=\"0\" onclick=\"calculateTotal()\">Undergraduate<\/label> \r\n          <label class=\"radiolabel\"><input type=\"radio\" name=\"Student\" value=\"1\" onclick=\"calculateTotal()\">Graduate<\/label> <br> \r\n          <label>Semester<\/label><br> \r\n          <label class=\"radiolabel\"><input type=\"radio\" name=\"Semester\" value=\"0\">Summer 2026<\/label> \r\n          <label class=\"radiolabel\"><input type=\"radio\" name=\"Semester\" value=\"0\">Fall 2026<\/label>\r\n\t\t  <label class=\"radiolabel\"><input type=\"radio\" name=\"Semester\" value=\"0\">Spring 2027<\/label>\r\n          <label class=\"radiolabel\"><input type=\"radio\" name=\"Semester\" value=\"0\">Summer 2027<\/label> <br> \r\n          <div id=\"tuitionRates\"> \r\n            <label>Tuition Plan<\/label> <br> \r\n            <label class=\"radiolabel\"><input type=\"radio\" name=\"tuitionPlan\" value=\"0\">Guaranteed<\/label> \r\n            <label class=\"radiolabel\"><input type=\"radio\" name=\"tuitionPlan\" value=\"1\">Variable<\/label> <br> \r\n          <\/div> \r\n          <label> Semester Credit Hours<\/label><br> \r\n          <div id=\"undergradhours\"> \r\n            <select required=\"\" id=\"semesterUndergradHours\" name=\"hours\"> <option value=\"1\">1<\/option> \r\n              <option value=\"2\">2<\/option>\r\n              <option value=\"3\">3<\/option> \r\n              <option value=\"4\">4<\/option> \r\n              <option value=\"5\">5<\/option> \r\n              <option value=\"6\">6<\/option> \r\n              <option value=\"7\">7<\/option> \r\n              <option value=\"8\">8<\/option> \r\n              <option value=\"9\">9<\/option> \r\n              <option value=\"10\">10<\/option> \r\n              <option value=\"11\">11<\/option> \r\n              <option value=\"12\">12<\/option> \r\n              <option value=\"13\">13<\/option> \r\n              <option value=\"14\">14<\/option> \r\n              <option value=\"15\">15<\/option> \r\n              <option value=\"16\">16<\/option> \r\n              <option value=\"17\">17<\/option> \r\n              <option value=\"18\">18<\/option> \r\n              <option value=\"19\">19<\/option> \r\n              <option value=\"20\">20<\/option> \r\n              <option value=\"21\">21<\/option> \r\n            <\/select> \r\n          <\/div> \r\n          <div id=\"gradhours\"> \r\n            <select required=\"\" id=\"semesterGradHours\" name=\"hours\"> \r\n              <option value=\"1\">1<\/option> <option value=\"2\">2<\/option> \r\n              <option value=\"3\">3<\/option> <option value=\"4\">4<\/option> \r\n              <option value=\"5\">5<\/option> <option value=\"6\">6<\/option> \r\n              <option value=\"7\">7<\/option> <option value=\"8\">8<\/option> \r\n              <option value=\"9\">9<\/option> <option value=\"10\">10<\/option> \r\n              <option value=\"11\">11<\/option> <option value=\"12\">12<\/option> \r\n              <option value=\"13\">13<\/option> <option value=\"14\">14<\/option> \r\n              <option value=\"15\">15<\/option> \r\n            <\/select> \r\n          <\/div> <br> \r\n          <div class=\"button-panel\"> \r\n            <a class=\"cu12 button-box button-box purple short-button\" onclick=\"displayCost()\">View Estimated Cost<\/a> \r\n            <a class=\"cu12 button-box no-margin-bottom button-box gray short-button\" onclick=\"resetForm()\"> Reset Form<\/a> \r\n          <\/div> \r\n        <\/fieldset> \r\n      <\/div> \r\n    <\/form>\r\n  <\/div>\r\n<\/div>\r\n<div class=\"col cu6-tablet cu12-mobile white\">\r\n  <div class=\"margin-block\">\r\n      <b>Estimated Cost of Resident Tuition and Required Fees:<\/b> \r\n      <div id=\"totalPrice\" style=\"font-size: 3em\"><\/div> \r\n      <b>Estimated Cost of Non-Resident Tuition and Required Fees:<\/b> \r\n      <div id=\"totalNRPrice\" style=\"font-size: 3em\"><\/div>\r\n  <\/div>\r\n         \r\n        <script> \r\n            var semester; \r\n            var campusrec = 100; \r\n            var student; \r\n            var tuition_rate = new Array(); \r\n            var service_fee = new Array(); \r\n            var servicePrice = 0; \r\n            var gradhours = document.getElementById(\"gradhours\"); \r\n            var undergradhours = document.getElementById(\"undergradhours\"); \r\n            gradhours.style.display = \"none\"; \r\n\r\n        function getStudent() { \r\n            student = 0; \r\n            var estimatorForm = document.forms[\"tuitionform\"]; \r\n            var selectedStudent = estimatorForm.elements[\"Student\"]; \r\n            for (var i = 0; i < selectedStudent.length; i++) { \r\n                if (selectedStudent[i].checked) { \r\n                    student = selectedStudent[i].value; \r\n                    break; \r\n                }\r\n            } \r\n            return student; \r\n        } \r\n\r\n        function getSemester() { \r\n            semester = 0; \r\n            var estimatorForm = document.forms[\"tuitionform\"]; \r\n            var selectedSemester = estimatorForm.elements[\"Semester\"]; \r\n            for (var i = 0; i < selectedSemester.length; i++) { \r\n                if (selectedSemester[i].checked) { \r\n                    semester = selectedSemester[i].value; \r\n                    declareValues(); break; \r\n                } \r\n            } \r\n            return semester; \r\n        } \r\n\r\n        function declareValues() { \r\n            switch (semester) { \r\n                case \"0\": \r\n                    tuition_rate.push(199.92); \/\/ Guaranteed plan (Resident Tuition)\r\n                    tuition_rate.push(183.71); \/\/ Variable plan (Resident Tution)\r\n                    tuition_rate.push(470.00); \/\/ Non-resident rate Undergrad\r\n                    tuition_rate.push(241.90); \/\/ Grad per credit hour\r\n                    tuition_rate.push(508.00); \/\/ Non-resident rate Grad\r\n                    service_fee.push(139.88); \/\/Undergrad rate fee\r\n                    service_fee.push(139.88); \/\/Non-resident Undergrad rate fee\r\n                    service_fee.push(167.37); \/\/ Grad rate fee\r\n                    return; \r\n                case \"1\": \r\n                    tuition_rate.push(0); \r\n                    tuition_rate.push(0); \r\n                    tuition_rate.push(0); \r\n                    tuition_rate.push(0); \r\n                    tuition_rate.push(0); \r\n                    service_fee.push(0); \r\n                    service_fee.push(0); \r\n                    service_fee.push(0); \r\n                    return; \r\n                default: \r\n                    semesterSelection = \"no\"; \r\n                    return semesterSelection; \r\n            } \r\n        } \r\n\r\n        function getPlanPrice() { \r\n            var planPrice = 0; \r\n            var estimatorForm = document.forms[\"tuitionform\"]; \r\n            var selectedPlan = estimatorForm.elements[\"tuitionPlan\"]; \r\n            for (var i = 0; i < selectedPlan.length; i++) { \r\n                if (selectedPlan[i].checked) { \r\n                    planPrice = tuition_rate[selectedPlan[i].value]; \r\n                    servicePrice = service_fee[selectedPlan[i].value]; \r\n                    break; \r\n                } \r\n            } \r\n            return planPrice; \r\n        } \r\n\r\n        function calculateUndergrad() { \r\n            var cost; \r\n            var servicecost; \r\n            var hours = document.getElementById(\"semesterUndergradHours\").value; \r\n            var tuitionplan = getPlanPrice(); \r\n            servicecost = hours * servicePrice; \r\n            cost = hours * tuitionplan; \r\n            cost = cost + servicecost + campusrec; \r\n            cost = cost.toFixed(2); \r\n            return cost; \r\n        } \r\n\r\n        function calculateNRUndergrad() { \r\n            var cost; \r\n            var servicecost; \r\n            var hours = document.getElementById(\"semesterUndergradHours\").value; \r\n            var tuitionplan = tuition_rate[2]; \r\n            servicePrice = service_fee[1]; \r\n            servicecost = hours * servicePrice; \r\n            cost = hours * tuitionplan; \r\n            cost = cost + servicecost + campusrec; \r\n            return cost.toFixed(2); \r\n        } \r\n\r\n        function calculateGrad() { \r\n            var cost; \r\n            var servicecost; \r\n            var hours = document.getElementById(\"semesterGradHours\").value; \r\n            var tuitionplan = tuition_rate[3]; \r\n            servicePrice = service_fee[2]; \r\n            servicecost = hours * servicePrice; \r\n            cost = hours * tuitionplan; \r\n            cost = cost + servicecost + campusrec; \r\n            cost = cost.toFixed(2); \r\n            return cost; \r\n        } \r\n\r\n        function calculateNRGrad() { \r\n            var cost; \r\n            var servicecost; \r\n            var hours = document.getElementById(\"semesterGradHours\").value; \r\n            var tuitionplan = tuition_rate[4]; \r\n            servicePrice = service_fee[2]; \r\n            servicecost = hours * servicePrice; \r\n            cost = hours * tuitionplan; \r\n            cost = cost + servicecost + campusrec; \r\n            return cost.toFixed(2); \r\n        } \r\n\r\n        function calculateTotal() { \r\n            var tuitionCost; \r\n            var tuitionrates = document.getElementById(\"tuitionRates\"); \r\n            if (getStudent() == 1) { \r\n                tuitionrates.style.display = \"none\"; \r\n                undergradhours.style.display = \"none\"; \r\n                gradhours.style.display = \"block\"; \r\n                getSemester(); \r\n                tuitionCost = calculateGrad(); \r\n            } \r\n            else { \r\n                tuitionrates.style.display = \"block\"; \r\n                undergradhours.style.display = \"block\"; \r\n                gradhours.style.display = \"none\"; \r\n                getSemester(); tuitionCost = calculateUndergrad(); \r\n            } \r\n            return tuitionCost; \r\n        } \r\n\r\n        function displayCost() { \r\n            var tuitionCost = calculateTotal(); \r\n            var divobj = document.getElementById(\"totalPrice\"); \r\n            tuitionCost = tuitionCost.toString().replace(\/(\\d)(?=(\\d{3})+(?!\\d))\/g, \"$1,\"); \r\n            divobj.style.display = \"block\"; \r\n            divobj.innerHTML = \"$\" + tuitionCost; \r\n            displayNRCost(); \r\n        } \r\n\r\n        function displayNRCost() { \r\n            var tuitionCost; \r\n            var divobj = document.getElementById(\"totalNRPrice\"); \r\n            if (getStudent() == 1) { \r\n                tuitionCost = \"$\" + calculateNRGrad(); \r\n            } \r\n            else if (getPlanPrice() == tuition_rate[1]) { \r\n                tuitionCost = \"$\" + calculateNRUndergrad(); \r\n            } else { \r\n                tuitionCost = \"(Not applicable)\"; \r\n            } \r\n            tuitionCost = tuitionCost.toString().replace(\/(\\d)(?=(\\d{3})+(?!\\d))\/g, \"$1,\"); \r\n            divobj.style.display = \"block\"; \r\n            divobj.innerHTML = tuitionCost; \r\n            return tuitionCost; \r\n        } \r\n\r\n        function resetForm() { \r\n            document.getElementById(\"tuitionform\").reset(); \r\n            var cost = document.getElementById(\"totalPrice\"); \r\n            var NRcost = document.getElementById(\"totalNRPrice\"); \r\n            NRcost.style.display = \"none\"; \r\n            cost.style.display = \"none\"; \r\n        } \r\n        <\/script>\r\n    <\/div>\r\n<\/div>\r\n<\/p>\n\n\n\n<p class=\"has-white-color has-text-color has-background\" style=\"background-color:#4f2d6f\">All fees are subject to change because of economic conditions, board action, and\/or legislative requirements.<\/p>\n\n\n\n<p>Undergraduate guaranteed tuition plans are restricted to Texas Residents.<\/p>\n\n\n\n<p>The estimate does&nbsp;<strong>not<\/strong>&nbsp;include:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Lab fees that are course specific<\/li>\n\n\n\n<li>Optional fees (<a href=\"https:\/\/www.tarleton.edu\/housing\/\" target=\"_blank\" rel=\"noreferrer noopener\">housing<\/a>,&nbsp;<a href=\"https:\/\/www.tarleton.edu\/housing\/meal-plan-details\/\" target=\"_blank\" rel=\"noreferrer noopener\">meal plans<\/a>,&nbsp;<a href=\"https:\/\/www.tarleton.edu\/parking\/student\/\" target=\"_blank\" rel=\"noreferrer noopener\">parking<\/a>, etc.)<\/li>\n\n\n\n<li>International fees<\/li>\n\n\n\n<li>Out of State fees<\/li>\n<\/ul>\n\n\n\n<p>Tuition Differentials will be charged to courses as follows: all courses in the College of Business, College of Agriculture and Natural Resources, College of Liberal and Fine Arts, College of Education, College of Science and Mathematics, and College of Health Science. Nursing\/Medical Lab Sciences\/Social Work, Criminology and College of Engineering will also have additional Tuition Differentials over and above their College Differentials. The tuition estimate includes an average tuition differential and will vary based on course enrollment.&nbsp;<a href=\"https:\/\/catalog.tarleton.edu\/expenses\/\" target=\"_blank\" rel=\"noreferrer noopener\">Learn more about differentials cost<\/a>.<\/p>\n\n\n\n<div class=\"wp-block-advgb-columns advgb-columns-wrapper\" id=\"advgb-cols-abf83030-ce3f-4178-bf6c-213507256379\"><div class=\"advgb-columns-container\"><div class=\"advgb-columns advgb-columns-row advgb-is-mobile advgb-columns-2 layout-12-12 mbl-layout-stacked gutter-20 vgutter-10\">\n<div class=\"wp-block-advgb-column advgb-column advgb-is-half-tablet advgb-is-full-mobile\" id=\"advgb-col-c9c0f347-54fa-4e09-bdf9-bf599998434d\"><div class=\"advgb-column-inner\" style=\"border-style:none;border-width:1px\">\n<div class=\"wp-block-advgb-button alignfull is-style-squared\"><a class=\"wp-block-advgb-button_link advgbbtn-bdffa502-ee9d-4457-b93a-b6ff64cf63aa\" href=\"https:\/\/www.tarleton.edu\/undergrad-info\" target=\"_blank\" rel=\"noopener noreferrer\"><span>Request Info for Undergraduate Programs<\/span><\/a><\/div>\n<\/div><\/div>\n\n\n\n<div class=\"wp-block-advgb-column advgb-column advgb-is-half-tablet advgb-is-full-mobile\" id=\"advgb-col-bd28c1c4-b9cf-4472-95d2-5a28252bc2c8\"><div class=\"advgb-column-inner\" style=\"border-style:none;border-width:1px\">\n<div class=\"wp-block-advgb-button alignfull is-style-squared\"><a class=\"wp-block-advgb-button_link advgbbtn-36121c43-bff8-47b2-927f-f7e21d4003b0\" href=\"https:\/\/www.tarleton.edu\/grad-info\" target=\"_blank\" rel=\"noopener noreferrer\"><span>Request Info for Graduate Programs<\/span><\/a><\/div>\n<\/div><\/div>\n<\/div><\/div><\/div>\n<style class=\"advgb-styles-renderer\">.advgbbtn-bdffa502-ee9d-4457-b93a-b6ff64cf63aa{font-size:18px;color:#fff !important;background-color:#4f2d7f !important;margin:0px 0px 0px 0px !important;padding:10px 30px 10px 30px;border-width:1px !important;border-style:none;border-radius:50px !important;}.advgbbtn-bdffa502-ee9d-4457-b93a-b6ff64cf63aa:hover{box-shadow:1px 1px 12px 0px #ccc;opacity:1;transition:all 0.2s ease;}.advgbbtn-bdffa502-ee9d-4457-b93a-b6ff64cf63aa > i {font-size:30px;color:inherit;float:left;margin-right:7px;}#advgb-col-c9c0f347-54fa-4e09-bdf9-bf599998434d>.advgb-column-inner{}@media screen and (max-width: 1023px) {#advgb-col-c9c0f347-54fa-4e09-bdf9-bf599998434d>.advgb-column-inner{}}@media screen and (max-width: 767px) {#advgb-col-c9c0f347-54fa-4e09-bdf9-bf599998434d>.advgb-column-inner{}}.advgbbtn-bdffa502-ee9d-4457-b93a-b6ff64cf63aa{font-size:18px;color:#fff !important;background-color:#4f2d7f !important;margin:0px 0px 0px 0px !important;padding:10px 30px 10px 30px;border-width:1px !important;border-style:none;border-radius:50px !important;}.advgbbtn-bdffa502-ee9d-4457-b93a-b6ff64cf63aa:hover{box-shadow:1px 1px 12px 0px #ccc;opacity:1;transition:all 0.2s ease;}.advgbbtn-bdffa502-ee9d-4457-b93a-b6ff64cf63aa > i {font-size:30px;color:inherit;float:left;margin-right:7px;}.advgbbtn-36121c43-bff8-47b2-927f-f7e21d4003b0{font-size:18px;color:#fff !important;background-color:#4f2d7f !important;margin:0px 0px 0px 0px !important;padding:10px 30px 10px 30px;border-width:1px !important;border-style:none;border-radius:50px !important;}.advgbbtn-36121c43-bff8-47b2-927f-f7e21d4003b0:hover{box-shadow:1px 1px 12px 0px #ccc;opacity:1;transition:all 0.2s ease;}.advgbbtn-36121c43-bff8-47b2-927f-f7e21d4003b0 > i {font-size:30px;color:inherit;float:left;margin-right:7px;}#advgb-col-bd28c1c4-b9cf-4472-95d2-5a28252bc2c8>.advgb-column-inner{}@media screen and (max-width: 1023px) {#advgb-col-bd28c1c4-b9cf-4472-95d2-5a28252bc2c8>.advgb-column-inner{}}@media screen and (max-width: 767px) {#advgb-col-bd28c1c4-b9cf-4472-95d2-5a28252bc2c8>.advgb-column-inner{}}.advgbbtn-36121c43-bff8-47b2-927f-f7e21d4003b0{font-size:18px;color:#fff !important;background-color:#4f2d7f !important;margin:0px 0px 0px 0px !important;padding:10px 30px 10px 30px;border-width:1px !important;border-style:none;border-radius:50px !important;}.advgbbtn-36121c43-bff8-47b2-927f-f7e21d4003b0:hover{box-shadow:1px 1px 12px 0px #ccc;opacity:1;transition:all 0.2s ease;}.advgbbtn-36121c43-bff8-47b2-927f-f7e21d4003b0 > i {font-size:30px;color:inherit;float:left;margin-right:7px;}#advgb-cols-abf83030-ce3f-4178-bf6c-213507256379{}@media screen and (max-width: 1023px) {#advgb-cols-abf83030-ce3f-4178-bf6c-213507256379{}}@media screen and (max-width: 767px) {#advgb-cols-abf83030-ce3f-4178-bf6c-213507256379{}}#advgb-col-c9c0f347-54fa-4e09-bdf9-bf599998434d>.advgb-column-inner{}@media screen and (max-width: 1023px) {#advgb-col-c9c0f347-54fa-4e09-bdf9-bf599998434d>.advgb-column-inner{}}@media screen and (max-width: 767px) {#advgb-col-c9c0f347-54fa-4e09-bdf9-bf599998434d>.advgb-column-inner{}}.advgbbtn-bdffa502-ee9d-4457-b93a-b6ff64cf63aa{font-size:18px;color:#fff !important;background-color:#4f2d7f !important;margin:0px 0px 0px 0px !important;padding:10px 30px 10px 30px;border-width:1px !important;border-style:none;border-radius:50px !important;}.advgbbtn-bdffa502-ee9d-4457-b93a-b6ff64cf63aa:hover{box-shadow:1px 1px 12px 0px #ccc;opacity:1;transition:all 0.2s ease;}.advgbbtn-bdffa502-ee9d-4457-b93a-b6ff64cf63aa > i {font-size:30px;color:inherit;float:left;margin-right:7px;}#advgb-col-bd28c1c4-b9cf-4472-95d2-5a28252bc2c8>.advgb-column-inner{}@media screen and (max-width: 1023px) {#advgb-col-bd28c1c4-b9cf-4472-95d2-5a28252bc2c8>.advgb-column-inner{}}@media screen and (max-width: 767px) {#advgb-col-bd28c1c4-b9cf-4472-95d2-5a28252bc2c8>.advgb-column-inner{}}.advgbbtn-36121c43-bff8-47b2-927f-f7e21d4003b0{font-size:18px;color:#fff !important;background-color:#4f2d7f !important;margin:0px 0px 0px 0px !important;padding:10px 30px 10px 30px;border-width:1px !important;border-style:none;border-radius:50px !important;}.advgbbtn-36121c43-bff8-47b2-927f-f7e21d4003b0:hover{box-shadow:1px 1px 12px 0px #ccc;opacity:1;transition:all 0.2s ease;}.advgbbtn-36121c43-bff8-47b2-927f-f7e21d4003b0 > i {font-size:30px;color:inherit;float:left;margin-right:7px;}<\/style>","protected":false},"excerpt":{"rendered":"<p>All fees are subject to change because of economic conditions, board action, and\/or legislative requirements. Undergraduate guaranteed tuition plans are restricted to Texas Residents. The estimate does&nbsp;not&nbsp;include: Tuition Differentials will &#8230;<\/p>\n","protected":false},"author":28,"featured_media":580,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"template-fullwidth.php","meta":{"_acf_changed":false,"inline_featured_image":false,"advgb_blocks_editor_width":"","advgb_blocks_columns_visual_guide":"","footnotes":""},"class_list":["post-785","page","type-page","status-publish","has-post-thumbnail","hentry"],"acf":[],"coauthors":[],"author_meta":{"author_link":"https:\/\/www.tarleton.edu\/business\/author\/","display_name":""},"relative_dates":{"created":"Posted 4 years ago","modified":"Updated 1 month ago"},"absolute_dates":{"created":"Posted on September 9, 2022","modified":"Updated on March 12, 2026"},"absolute_dates_time":{"created":"Posted on September 9, 2022 6:47 pm","modified":"Updated on March 12, 2026 8:06 pm"},"featured_img_caption":"","featured_img":false,"series_order":"","_links":{"self":[{"href":"https:\/\/www.tarleton.edu\/business\/wp-json\/wp\/v2\/pages\/785","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.tarleton.edu\/business\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.tarleton.edu\/business\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.tarleton.edu\/business\/wp-json\/wp\/v2\/users\/28"}],"replies":[{"embeddable":true,"href":"https:\/\/www.tarleton.edu\/business\/wp-json\/wp\/v2\/comments?post=785"}],"version-history":[{"count":8,"href":"https:\/\/www.tarleton.edu\/business\/wp-json\/wp\/v2\/pages\/785\/revisions"}],"predecessor-version":[{"id":2578,"href":"https:\/\/www.tarleton.edu\/business\/wp-json\/wp\/v2\/pages\/785\/revisions\/2578"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.tarleton.edu\/business\/wp-json\/"}],"wp:attachment":[{"href":"https:\/\/www.tarleton.edu\/business\/wp-json\/wp\/v2\/media?parent=785"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}