{"id":4853,"date":"2026-06-11T14:01:36","date_gmt":"2026-06-11T14:01:36","guid":{"rendered":"https:\/\/elyspace.com\/blog\/?p=4853"},"modified":"2026-06-11T14:01:36","modified_gmt":"2026-06-11T14:01:36","slug":"payment-gateway-integration-in-laravel-website","status":"publish","type":"post","link":"https:\/\/elyspace.com\/blog\/payment-gateway-integration-in-laravel-website\/","title":{"rendered":"Payment Gateway Integration in Laravel Website \u2013 Step-by-Step Guide (2026)"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">Payment gateway integration is one of the most critical steps if you want to create an&nbsp;e-commerce&nbsp;site (online store), SaaS product (Software as a Service), or any other type of web application that needs to accept payments.&nbsp;<a href=\"https:\/\/elyspace.com\/\">ElySpace<\/a>&nbsp;has executed many Laravel projects where the client needed a secure, simple means of processing payments. After spending time working with various payment gateways within Laravel, we can assure you that it is not difficult to accomplish once you have a basic understanding of how it works.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">We will take you step-by-step through the process of payment gateway integrating into your Laravel-based website project. Whether you&#8217;re new to web development or just looking for helpful reminders about some of the best ways for payment gateway integration, this article will cover everything from initial configuration to testing to allowing customers to pay via credit cards on your site.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"576\" src=\"https:\/\/elyspace.com\/blog\/wp-content\/uploads\/2026\/06\/2-1024x576.png\" alt=\"Payment Gateway Integration\" class=\"wp-image-4854\" srcset=\"https:\/\/elyspace.com\/blog\/wp-content\/uploads\/2026\/06\/2-1024x576.png 1024w, https:\/\/elyspace.com\/blog\/wp-content\/uploads\/2026\/06\/2-300x169.png 300w, https:\/\/elyspace.com\/blog\/wp-content\/uploads\/2026\/06\/2-768x432.png 768w, https:\/\/elyspace.com\/blog\/wp-content\/uploads\/2026\/06\/2-150x84.png 150w, https:\/\/elyspace.com\/blog\/wp-content\/uploads\/2026\/06\/2.png 1280w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Why Payment Gateway Integration Matters<\/strong><\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Payment gateway integration isn&#8217;t just a technical requirement within your&nbsp;<a href=\"https:\/\/elyspace.com\/blog\/https-elyspace-com-e-commerce-in-kashmir\/\">e-commerce<\/a>&nbsp;website; it acts as an interface between the customer and your business. If the process for making payments on your site is inefficient, confusing, or unsafe, consumers will simply leave without making their purchase.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">As more and more local businesses in Kashmir and the surrounding region migrate to an online business model, consumers are expecting the same ease of using Amazon or Daraz when paying for goods. Getting the payment gateway integrated into your website correctly from the start will allow you to keep your customers and preserve your reputation against future loss of sales.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Laravel has become one of the most widely used frameworks for developing websites with PHP, and it has a myriad of prebuilt modules\/products that help make it easy to implement this type of functionality without developing everything from scratch for the Payment Gateway Integration.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"576\" src=\"https:\/\/elyspace.com\/blog\/wp-content\/uploads\/2026\/06\/3-1024x576.png\" alt=\"Payment Gateway Integration\" class=\"wp-image-4855\" srcset=\"https:\/\/elyspace.com\/blog\/wp-content\/uploads\/2026\/06\/3-1024x576.png 1024w, https:\/\/elyspace.com\/blog\/wp-content\/uploads\/2026\/06\/3-300x169.png 300w, https:\/\/elyspace.com\/blog\/wp-content\/uploads\/2026\/06\/3-768x432.png 768w, https:\/\/elyspace.com\/blog\/wp-content\/uploads\/2026\/06\/3-150x84.png 150w, https:\/\/elyspace.com\/blog\/wp-content\/uploads\/2026\/06\/3.png 1280w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Popular Payment Gateways for Laravel<\/strong><\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">It is useful to know what your options are before starting to code. Below is a list of the most popular gateways used in Laravel projects:<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">\u00a0<a href=\"https:\/\/stripe.com\/\" target=\"_blank\" rel=\"noopener\">Stripe<\/a>: Ideal for international companies with a clean API and excellent documentation<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https:\/\/www.paypal.com\/us\/home\" target=\"_blank\" rel=\"noopener\">PayPal<\/a>:  A reputable gateway that has users throughout the globe<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https:\/\/razorpay.com\/\" target=\"_blank\" rel=\"noopener\">Razorpay<\/a>: Very popular in South Asia and supports UPI or local cards<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">In this guide, we&#8217;ll take a look at&nbsp;Stripe&nbsp;since it is very easy for new developers to integrate with (especially when using Laravel) and has the highest quality of documentation for Laravel developers. PayPal will be mentioned briefly as an additional option.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"576\" src=\"https:\/\/elyspace.com\/blog\/wp-content\/uploads\/2026\/06\/4-1024x576.png\" alt=\"Payment Gateway Integration\" class=\"wp-image-4856\" srcset=\"https:\/\/elyspace.com\/blog\/wp-content\/uploads\/2026\/06\/4-1024x576.png 1024w, https:\/\/elyspace.com\/blog\/wp-content\/uploads\/2026\/06\/4-300x169.png 300w, https:\/\/elyspace.com\/blog\/wp-content\/uploads\/2026\/06\/4-768x432.png 768w, https:\/\/elyspace.com\/blog\/wp-content\/uploads\/2026\/06\/4-150x84.png 150w, https:\/\/elyspace.com\/blog\/wp-content\/uploads\/2026\/06\/4.png 1280w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Prerequisites Before You Start<\/strong><\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Before transferring funds through Payment Gateway Integration with Laravel, please confirm both the requirements listed below and the preparatory steps necessary for completing the transfer successfully:<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">1) An established Working Laravel Application (this may include versions of Laravel 9, 10, and\/or 11)<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">2) An installed composer on your development machine<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">3) A&nbsp;Stripe&nbsp;Member&#8217;s Account (FREE to create an account at&nbsp;stripe.com)<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">4) A moderate amount of understanding with respect to routing and controllers within the context of working with Laravel<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">If you do not have any prior experience working with the Laravel framework itself, we highly suggest reviewing the Official Documentation for Laravel to become more familiar with both routing and controlling before you start to look at doing anything related to Paying For Services.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"576\" src=\"https:\/\/elyspace.com\/blog\/wp-content\/uploads\/2026\/06\/5-1024x576.png\" alt=\"Payment Gateway Integration\" class=\"wp-image-4857\" srcset=\"https:\/\/elyspace.com\/blog\/wp-content\/uploads\/2026\/06\/5-1024x576.png 1024w, https:\/\/elyspace.com\/blog\/wp-content\/uploads\/2026\/06\/5-300x169.png 300w, https:\/\/elyspace.com\/blog\/wp-content\/uploads\/2026\/06\/5-768x432.png 768w, https:\/\/elyspace.com\/blog\/wp-content\/uploads\/2026\/06\/5-150x84.png 150w, https:\/\/elyspace.com\/blog\/wp-content\/uploads\/2026\/06\/5.png 1280w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Step-by-Step: Payment Gateway in Laravel Using&nbsp;Stripe<\/strong><\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">This is the core part of the guide. Follow these steps carefully, and you&#8217;ll have a working&nbsp;<strong>payment gateway&nbsp;<\/strong><strong>set up on your website<\/strong>&nbsp;within an hour.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Step 1: Install the&nbsp;Stripe&nbsp;Package<\/strong><\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Open your terminal and run:<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td><code><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-vivid-purple-color\"><strong>composer require\u00a0stripe\/stripe-php<\/strong><\/mark><\/code><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">This installs\u00a0Stripe&#8217;s official PHP SDK, which Laravel can use directly. There&#8217;s no need for extra wrappers. Stripe&#8217;s SDK works cleanly with Laravel&#8217;s structure.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Step 2: Add Your&nbsp;Stripe&nbsp;API Keys<\/strong><\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Log in to your&nbsp;Stripe&nbsp;dashboard and grab your&nbsp;<strong>Publishable Key<\/strong>&nbsp;and&nbsp;<strong>Secret Key<\/strong>. Add them to your&nbsp;.env&nbsp;file:<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-vivid-purple-color\"><strong>STRIPE_KEY=your_publishable_key<br><br>STRIPE_SECRET=your_secret_key<\/strong><\/mark><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">Never hardcode these keys directly into your controller files. Keeping them in&nbsp;.env&nbsp;is a basic but critical security practice that many beginners skip.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Step 3: Create a Payment Controller<\/strong><\/h3>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td><strong><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-vivid-purple-color\">Run this command to generate a new controller:<br><br>php artisan make: controller PaymentController<\/mark><\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">Inside this controller, you&#8217;ll write the logic that creates a payment session and handles the response from&nbsp;Stripe. This is where most of the&nbsp;<strong>payment gateway integration<\/strong>&nbsp;logic lives.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Step 4: Set Up the Payment Route<\/strong><\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">In your&nbsp;routes\/web.php&nbsp;file, add routes for showing the payment form and processing the payment:<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td><strong><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-vivid-purple-color\">Route::get(&#8216;\/payment&#8217;, [PaymentController::class, &#8216;showForm&#8217;]);<br><br>Route::post(&#8216;\/payment&#8217;, [PaymentController::class, &#8216;processPayment&#8217;]);<\/mark><\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">These two routes handle the entire flow: one displays the form, the other processes the card details securely through\u00a0Stripe.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Step 5: Build the Payment Form<\/strong><\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Using the&nbsp;<a href=\"https:\/\/stripe.com\/docs\/stripe-js\" target=\"_blank\" rel=\"noopener\">Stripe Elements library<\/a>&nbsp;will allow you to build a simple Blade view that takes and handles sensitive card data like the card number, expiration date, and security code directly on the client-side rather than through your server. This means that with&nbsp;Stripe,&nbsp;you receive the added bonus of remaining PCI compliant without having to take on additional responsibility due to the use of this library.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Step 6: Process the Payment<\/strong><\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Utilize the&nbsp;Stripe&nbsp;SDK in your PaymentController to generate a payment intent or a charge.&nbsp;Stripe&nbsp;responds with a success or failure response, which can be used to modify your database, send a confirmation email, or redirect users to the thank-you page.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The entire process is seamless from form submission until user confirmation. Thus, the entire payment gateway integration experience is very seamless for users of the Laravel platform.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Adding PayPal as an Alternative Option<\/strong><\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">In areas such as Kashmir, there is a tendency for consumers to require multiple payment options; therefore, adding PayPal as a payment method along with&nbsp;Stripe&nbsp;within your website&#8217;s payment processor\/ gateway would be an excellent option when developing your application in order to be able to reach a larger audience base than you presently do.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The implementation process will be relatively the same as follows:<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">1: Install the official\u00a0<a href=\"https:\/\/developer.paypal.com\/sdk\/js\/\" target=\"_blank\" rel=\"noopener\">PayPal SDK<\/a>\u00a0through Composer<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">2: Store your PayPal Client ID and Secret information in your application&#8217;s .env file<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">3: Create appropriate routes and controller action methods that correspond with PayPal&#8217;s checkout process<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">4: Handle incoming success\/cancel callbacks from PayPal<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">By allowing users to use both&nbsp;Stripe&nbsp;and PayPal (as payment processors), they will have greater options when it comes time to make purchasing decisions, which can often lead directly to higher conversion rates on your site.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1280\" height=\"720\" src=\"https:\/\/elyspace.com\/blog\/wp-content\/uploads\/2026\/06\/6-1024x576.png\" alt=\"Payment Gateway Integration\" class=\"wp-image-4858\" srcset=\"https:\/\/elyspace.com\/blog\/wp-content\/uploads\/2026\/06\/6-1024x576.png 1024w, https:\/\/elyspace.com\/blog\/wp-content\/uploads\/2026\/06\/6-300x169.png 300w, https:\/\/elyspace.com\/blog\/wp-content\/uploads\/2026\/06\/6-768x432.png 768w, https:\/\/elyspace.com\/blog\/wp-content\/uploads\/2026\/06\/6-150x84.png 150w, https:\/\/elyspace.com\/blog\/wp-content\/uploads\/2026\/06\/6.png 1280w\" sizes=\"auto, (max-width: 1280px) 100vw, 1280px\" \/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Securing Your Payment Gateway in Laravel<\/strong><\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">When working with any form of payment, the use of security is a necessity. Some of the areas that we review at&nbsp;Ely Space&nbsp;prior to launching each project are:<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">1: Always make sure your live site is using HTTPS since payment gateways will decline requests made through plain HTTP.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">2: Store your API keys in a .env file so that they are not present within your version control system.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">3: Validate all incoming data on your server (back-end) rather than only validating at the front-end.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">4: Use the CSRF protection built into the Laravel framework for all payment forms.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">5: Log all transactions so that they may be audited; however, do not log the complete card number or other sensitive information.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">These items are not only best practices; however, they must be fulfilled according to the payment gateway provider before you will be able to process real monetary transactions.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"576\" src=\"https:\/\/elyspace.com\/blog\/wp-content\/uploads\/2026\/06\/7-1024x576.png\" alt=\"Payment Gateway Integration\" class=\"wp-image-4859\" srcset=\"https:\/\/elyspace.com\/blog\/wp-content\/uploads\/2026\/06\/7-1024x576.png 1024w, https:\/\/elyspace.com\/blog\/wp-content\/uploads\/2026\/06\/7-300x169.png 300w, https:\/\/elyspace.com\/blog\/wp-content\/uploads\/2026\/06\/7-768x432.png 768w, https:\/\/elyspace.com\/blog\/wp-content\/uploads\/2026\/06\/7-150x84.png 150w, https:\/\/elyspace.com\/blog\/wp-content\/uploads\/2026\/06\/7.png 1280w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Common Errors and How to Fix Them<\/strong><\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Here are a few issues developers run into often during&nbsp;<strong>payment gateway integration<\/strong>, along with quick fixes:<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Invalid API Key error<\/strong>:  Double-check your\u00a0.env\u00a0file and make sure you&#8217;re using test keys during development, not live keys.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>CSRF token mismatch<\/strong>:  Make sure your Blade form includes\u00a0@csrf\u00a0and that your route isn&#8217;t excluded from CSRF protection unnecessarily.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Webhook not firing<\/strong>: Stripe\u00a0and PayPal both use webhooks to confirm payment status. Make sure your webhook URL is publicly accessible (use tools like ngrok during local testing).<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Currency mismatch errors<\/strong>: Confirm that the currency you&#8217;re charging matches what&#8217;s set up in your gateway account settings.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Testing Before Going Live<\/strong><\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Make sure to conduct tests at all times. Both PayPal and&nbsp;Stripe&nbsp;provide&nbsp;<a href=\"https:\/\/stripe.com\/docs\/testing\" target=\"_blank\" rel=\"noopener\">sandbox or test modes<\/a>&nbsp;for developers to test their payment processes and ways in which cards would fail. The sandbox mode will also provide fake credit card numbers that are used to simulate the success of payments, as well as how they would fail. Options include: 1) A successful complete transaction, 2) a declined payment due to a credit card that has expired, and 3) a reaction to receiving a webhook notification. Only after passing the results of all three tests multiple times can a developer transition to their live API key\/mode.&nbsp;<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Final Thoughts<\/strong><\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Possessing the ability to accurately integrate payment gateways into applications written in Laravel is among the most valuable attributes a developer of Laravel can possess, and an integral part of any establishment that wishes to provide products\/services through an online interface. Regardless of which service provider you opt to use (e.g.,&nbsp;Stripe, PayPal, or any other provider operating within your region), the steps to integrate them into an application that uses Laravel will be substantially similar: download their SDK, ensure your keys are secured, create your form, process the payment, and thoroughly test the solution before putting it into use.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">If you are working on a project and you require assistance setting up payment gateways using Laravel or would like to work with a group that has completed this type of project in the past,&nbsp;Ely Space&nbsp;has the experience necessary to assist you with the successful completion of your project by ensuring that the necessary security measures and user experience elements were incorporated into your solution as part of your overall implementation process.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Payment gateway integration is one of the most critical steps if you want to create an&nbsp;e-commerce&nbsp;site (online store), SaaS product (Software as a Service), or any other type of web application that needs to accept payments.&nbsp;ElySpace&nbsp;has executed many Laravel projects where the client needed a secure, simple means of processing payments. After spending time working [&hellip;]<\/p>\n","protected":false},"author":8,"featured_media":4860,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[1],"tags":[],"class_list":["post-4853","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-client-stories"],"acf":[],"_links":{"self":[{"href":"https:\/\/elyspace.com\/blog\/wp-json\/wp\/v2\/posts\/4853","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/elyspace.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/elyspace.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/elyspace.com\/blog\/wp-json\/wp\/v2\/users\/8"}],"replies":[{"embeddable":true,"href":"https:\/\/elyspace.com\/blog\/wp-json\/wp\/v2\/comments?post=4853"}],"version-history":[{"count":1,"href":"https:\/\/elyspace.com\/blog\/wp-json\/wp\/v2\/posts\/4853\/revisions"}],"predecessor-version":[{"id":4861,"href":"https:\/\/elyspace.com\/blog\/wp-json\/wp\/v2\/posts\/4853\/revisions\/4861"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/elyspace.com\/blog\/wp-json\/wp\/v2\/media\/4860"}],"wp:attachment":[{"href":"https:\/\/elyspace.com\/blog\/wp-json\/wp\/v2\/media?parent=4853"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/elyspace.com\/blog\/wp-json\/wp\/v2\/categories?post=4853"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/elyspace.com\/blog\/wp-json\/wp\/v2\/tags?post=4853"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}