{"id":9135,"date":"2025-06-25T17:50:45","date_gmt":"2025-06-25T12:20:45","guid":{"rendered":"https:\/\/pheonixsolutions.com\/blog\/?p=9135"},"modified":"2025-06-25T17:55:13","modified_gmt":"2025-06-25T12:25:13","slug":"generate-pdf-using-javascript","status":"publish","type":"post","link":"https:\/\/pheonixsolutions.com\/blog\/generate-pdf-using-javascript\/","title":{"rendered":"Generate PDF using JavaScript"},"content":{"rendered":"\n<p>The goal is to generate the PDF from your web application without requiring the backend component. There are a number of React libraries which allow you to create PDFs, for this purpose I am using jsPDF libraries.<\/p>\n\n\n\n<p><strong>jsPDF<\/strong><\/p>\n\n\n\n<p>jsPDF is open source JavaScript library where pdf files can be created within web applications. This software would be relevant especially in cases when you need to enable users to download receipts, invoices, quotations or any other documents for their records.<\/p>\n\n\n\n<p><strong>Installation<\/strong><\/p>\n\n\n\n<p><em>npm install jsPDF<\/em><\/p>\n\n\n\n<p><em>yarn add jsPDF<\/em><\/p>\n\n\n\n<p><strong>Steps to implement the code into a project<\/strong><\/p>\n\n\n\n<p><strong>Step -1<\/strong><\/p>\n\n\n\n<p>Open file and import jsPDF module.<\/p>\n\n\n\n<p>import jsPDF from &#8220;jspdf&#8221;;<\/p>\n\n\n\n<p><strong>Step-2<\/strong><\/p>\n\n\n\n<p>Set up paper size, orientation, and units.<\/p>\n\n\n\n<p>const doc =new jsPDF()<\/p>\n\n\n\n<p>This sets the default size of paper to A4, portrait mode, and millimeters as the measuring unit.<\/p>\n\n\n\n<p>In case we desire customized pape size and orientation we can use:<\/p>\n\n\n\n<p>const doc= new jsPDF({<\/p>\n\n\n\n<p>orientation:&#8221;landscape&#8221;,<\/p>\n\n\n\n<p>unit:&#8221;in&#8221;,<\/p>\n\n\n\n<p>formate:[4,2]<\/p>\n\n\n\n<p>})<\/p>\n\n\n\n<p><strong>Step -3<\/strong><\/p>\n\n\n\n<p>We can now add any text we want into our PDF document.<\/p>\n\n\n\n<p>doc. text(&#8220;Hello&#8221;, 15,15)<\/p>\n\n\n\n<p>&#8220;Hello&#8221; will be added on the PDF and \u201cHello\u201d will appear at coordinates (15,15).<\/p>\n\n\n\n<p><strong>Step -4<\/strong><\/p>\n\n\n\n<p>doc.save (&#8220;PDF&#8221;)<\/p>\n\n\n\n<p>In which name should PDF is download and save that should be give in this save.<\/p>\n\n\n\n<p><strong>Full code:<\/strong><\/p>\n\n\n\n<p>import jsPDF from &#8220;jspdf&#8221;;<\/p>\n\n\n\n<p>const doc =new jsPDF();<\/p>\n\n\n\n<p>const doc = new jsPDF();<\/p>\n\n\n\n<p>doc.text(&#8220;Hello&#8221; , 15,15)<\/p>\n\n\n\n<p>doc.save(&#8220;pdf&#8221;)<\/p>\n\n\n\n<p><strong>Creating Tables with AutoTable Plugin<\/strong><\/p>\n\n\n\n<p>Need to create tables such as invoices or reports? jspdf-autotable makes it extremely simple.<\/p>\n\n\n\n<p>Installation:<\/p>\n\n\n\n<p><em>npm install jspdf jspdf-autotable<\/em><\/p>\n\n\n\n<p><strong>Example:<\/strong><\/p>\n\n\n\n<p>import jsPDF from &#8220;jspdf&#8221;;<\/p>\n\n\n\n<p>import autoTable from &#8220;jspdf-autotable&#8221;;<\/p>\n\n\n\n<p>const doc = new jsPDF();<\/p>\n\n\n\n<p>autoTable(doc, {<\/p>\n\n\n\n<p>head: [[&#8220;Name&#8221;, &#8220;Email&#8221;, &#8220;Country&#8221;]],<\/p>\n\n\n\n<p>body: [[&#8220;ABC&#8221;, &#8220;abc@example.com&#8221;, &#8220;India&#8221;],<br>[&#8220;XYZ&#8221;, &#8220;xyz@example.com&#8221;, &#8220;India&#8221;]],<\/p>\n\n\n\n<p>});<\/p>\n\n\n\n<p>doc.save(&#8220;table.pdf&#8221;);<\/p>\n\n\n\n<p>We can use HTML tables as input, merge cells and style the table among other things!<\/p>\n\n\n\n<p><strong>Inserting Images<\/strong><\/p>\n\n\n\n<p>For images, you can insert in PNG or JPEG formats (base64 or URL).<\/p>\n\n\n\n<p>const imgData = \u201cdata:image\/png;base64,\u2026\u201d; <\/p>\n\n\n\n<p>doc.addImage(imgData, \u201cPNG\u201d, 10, 10, 50, 50);<\/p>\n\n\n\n<p>This is great for inserting logos, product images and even headers.<\/p>\n\n\n\n<p><strong>Adding Custom Fonts<\/strong><\/p>\n\n\n\n<p>jsPDF has a method addFont which enables the use of custom fonts (TTF).<\/p>\n\n\n\n<p>To customize your font upload via:<\/p>\n\n\n\n<p><br>doc.addFileToVFS(\u201cYourFont.ttf\u201d, base64String);<br>doc.addFont(\u201cYourFont.ttf\u201d, \u201cYourFont\u201d, \u201cnormal\u201d);<br>doc.setFont(\u201cYourFont\u201d);<\/p>\n\n\n\n<p>This is super useful for branding or supporting non-Latin scripts.<\/p>\n\n\n\n<p><strong>Layout &amp; Styling Features<\/strong><\/p>\n\n\n\n<p>JsPDF gives users a variety utility like:<\/p>\n\n\n\n<p>setFontSize(size)<\/p>\n\n\n\n<p>setTextColor(r, g, b)<\/p>\n\n\n\n<p>rect(x, y, width, height)<br><\/p>\n\n\n\n<p><\/p>\n\n\n\n<p><strong>Real Time Application<\/strong> <\/p>\n\n\n\n<p>Generating invoices and receipts.<\/p>\n\n\n\n<p>Issuing certificates.<\/p>\n\n\n\n<p>Report or table printing.<\/p>\n\n\n\n<p>Resumes for download.<\/p>\n\n\n\n<p>Tickets or passes for events.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>The goal is to generate the PDF from your web application without requiring the backend component. There are a number of React libraries which allow you to create PDFs, for this purpose I am using jsPDF libraries. jsPDF jsPDF is open source JavaScript library where pdf files can be created&hellip; <a href=\"https:\/\/pheonixsolutions.com\/blog\/generate-pdf-using-javascript\/\" class=\"more-link read-more\" rel=\"bookmark\">Continue Reading <span class=\"screen-reader-text\">Generate PDF using JavaScript<\/span><i class=\"fa fa-arrow-right\"><\/i><\/a><\/p>\n","protected":false},"author":517,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"jetpack_post_was_ever_published":false,"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[1],"tags":[],"class_list":{"0":"post-9135","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"hentry","6":"category-uncategorized","7":"h-entry","9":"h-as-article"},"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Pheonix Solutions - We Empower Your Business Growth<\/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:\/\/pheonixsolutions.com\/blog\/generate-pdf-using-javascript\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Pheonix Solutions - We Empower Your Business Growth\" \/>\n<meta property=\"og:description\" content=\"The goal is to generate the PDF from your web application without requiring the backend component. There are a number of React libraries which allow you to create PDFs, for this purpose I am using jsPDF libraries. jsPDF jsPDF is open source JavaScript library where pdf files can be created&hellip; Continue Reading Generate PDF using JavaScript\" \/>\n<meta property=\"og:url\" content=\"https:\/\/pheonixsolutions.com\/blog\/generate-pdf-using-javascript\/\" \/>\n<meta property=\"og:site_name\" content=\"PHEONIXSOLUTIONS\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/\" \/>\n<meta property=\"article:published_time\" content=\"2025-06-25T12:20:45+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-06-25T12:25:13+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/09\/PX2.png\" \/>\n\t<meta property=\"og:image:width\" content=\"3837\" \/>\n\t<meta property=\"og:image:height\" content=\"2540\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"rithani S.R\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@pheonixsolution\" \/>\n<meta name=\"twitter:site\" content=\"@pheonixsolution\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"rithani S.R\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/generate-pdf-using-javascript\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/generate-pdf-using-javascript\\\/\"},\"author\":{\"name\":\"rithani S.R\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/person\\\/4ef46a5281ce472ec238b189bc91492c\"},\"headline\":\"Generate PDF using JavaScript\",\"datePublished\":\"2025-06-25T12:20:45+00:00\",\"dateModified\":\"2025-06-25T12:25:13+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/generate-pdf-using-javascript\\\/\"},\"wordCount\":431,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/generate-pdf-using-javascript\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/generate-pdf-using-javascript\\\/\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/generate-pdf-using-javascript\\\/\",\"name\":\"Pheonix Solutions - We Empower Your Business Growth\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#website\"},\"datePublished\":\"2025-06-25T12:20:45+00:00\",\"dateModified\":\"2025-06-25T12:25:13+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/generate-pdf-using-javascript\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/generate-pdf-using-javascript\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/generate-pdf-using-javascript\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Generate PDF using JavaScript\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\",\"name\":\"Pheonix Solutions\",\"description\":\"We Empower Your Business Growth\",\"publisher\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\",\"name\":\"PheonixSolutions\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/12\\\/logo.png\",\"contentUrl\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/12\\\/logo.png\",\"width\":454,\"height\":300,\"caption\":\"PheonixSolutions\"},\"image\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/PheonixSolutions-209942982759387\\\/\",\"https:\\\/\\\/x.com\\\/pheonixsolution\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/person\\\/4ef46a5281ce472ec238b189bc91492c\",\"name\":\"rithani S.R\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/2e5bfa0516df11177982adde1a5c1886cb9d88dadfceb10b05b4481f516b8789?s=96&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/2e5bfa0516df11177982adde1a5c1886cb9d88dadfceb10b05b4481f516b8789?s=96&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/2e5bfa0516df11177982adde1a5c1886cb9d88dadfceb10b05b4481f516b8789?s=96&r=g\",\"caption\":\"rithani S.R\"},\"sameAs\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wp-admin\"],\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/author\\\/rithani\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Pheonix Solutions - We Empower Your Business Growth","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:\/\/pheonixsolutions.com\/blog\/generate-pdf-using-javascript\/","og_locale":"en_US","og_type":"article","og_title":"Pheonix Solutions - We Empower Your Business Growth","og_description":"The goal is to generate the PDF from your web application without requiring the backend component. There are a number of React libraries which allow you to create PDFs, for this purpose I am using jsPDF libraries. jsPDF jsPDF is open source JavaScript library where pdf files can be created&hellip; Continue Reading Generate PDF using JavaScript","og_url":"https:\/\/pheonixsolutions.com\/blog\/generate-pdf-using-javascript\/","og_site_name":"PHEONIXSOLUTIONS","article_publisher":"https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/","article_published_time":"2025-06-25T12:20:45+00:00","article_modified_time":"2025-06-25T12:25:13+00:00","og_image":[{"width":3837,"height":2540,"url":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/09\/PX2.png","type":"image\/png"}],"author":"rithani S.R","twitter_card":"summary_large_image","twitter_creator":"@pheonixsolution","twitter_site":"@pheonixsolution","twitter_misc":{"Written by":"rithani S.R","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/pheonixsolutions.com\/blog\/generate-pdf-using-javascript\/#article","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/blog\/generate-pdf-using-javascript\/"},"author":{"name":"rithani S.R","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/person\/4ef46a5281ce472ec238b189bc91492c"},"headline":"Generate PDF using JavaScript","datePublished":"2025-06-25T12:20:45+00:00","dateModified":"2025-06-25T12:25:13+00:00","mainEntityOfPage":{"@id":"https:\/\/pheonixsolutions.com\/blog\/generate-pdf-using-javascript\/"},"wordCount":431,"commentCount":0,"publisher":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#organization"},"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/pheonixsolutions.com\/blog\/generate-pdf-using-javascript\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/pheonixsolutions.com\/blog\/generate-pdf-using-javascript\/","url":"https:\/\/pheonixsolutions.com\/blog\/generate-pdf-using-javascript\/","name":"Pheonix Solutions - We Empower Your Business Growth","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#website"},"datePublished":"2025-06-25T12:20:45+00:00","dateModified":"2025-06-25T12:25:13+00:00","breadcrumb":{"@id":"https:\/\/pheonixsolutions.com\/blog\/generate-pdf-using-javascript\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/pheonixsolutions.com\/blog\/generate-pdf-using-javascript\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/pheonixsolutions.com\/blog\/generate-pdf-using-javascript\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/pheonixsolutions.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Generate PDF using JavaScript"}]},{"@type":"WebSite","@id":"https:\/\/pheonixsolutions.com\/blog\/#website","url":"https:\/\/pheonixsolutions.com\/blog\/","name":"Pheonix Solutions","description":"We Empower Your Business Growth","publisher":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/pheonixsolutions.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/pheonixsolutions.com\/blog\/#organization","name":"PheonixSolutions","url":"https:\/\/pheonixsolutions.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/12\/logo.png","contentUrl":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/12\/logo.png","width":454,"height":300,"caption":"PheonixSolutions"},"image":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/","https:\/\/x.com\/pheonixsolution"]},{"@type":"Person","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/person\/4ef46a5281ce472ec238b189bc91492c","name":"rithani S.R","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/2e5bfa0516df11177982adde1a5c1886cb9d88dadfceb10b05b4481f516b8789?s=96&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/2e5bfa0516df11177982adde1a5c1886cb9d88dadfceb10b05b4481f516b8789?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/2e5bfa0516df11177982adde1a5c1886cb9d88dadfceb10b05b4481f516b8789?s=96&r=g","caption":"rithani S.R"},"sameAs":["https:\/\/pheonixsolutions.com\/blog\/wp-admin"],"url":"https:\/\/pheonixsolutions.com\/blog\/author\/rithani\/"}]}},"jetpack_featured_media_url":"","jetpack_shortlink":"https:\/\/wp.me\/p7F4uM-2nl","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/9135","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/users\/517"}],"replies":[{"embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/comments?post=9135"}],"version-history":[{"count":0,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/9135\/revisions"}],"wp:attachment":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/media?parent=9135"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/categories?post=9135"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/tags?post=9135"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}