{"id":17524,"date":"2026-04-02T12:07:37","date_gmt":"2026-04-02T06:37:37","guid":{"rendered":"https:\/\/www.skynats.com\/blog\/?p=17524"},"modified":"2026-04-02T12:07:39","modified_gmt":"2026-04-02T06:37:39","slug":"how-to-test-sendgrid-smtp-using-a-php-script","status":"publish","type":"post","link":"https:\/\/www.skynats.com\/blog\/how-to-test-sendgrid-smtp-using-a-php-script\/","title":{"rendered":"How to Test SendGrid SMTP Using a PHP Script"},"content":{"rendered":"\n<h2 class=\"wp-block-heading has-small-font-size\" id=\"h-introduction\"><strong>Introduction<\/strong><\/h2>\n\n\n\n<p>Testing email functionality from your server is an important step in building any web application. Even if your code is correct, issues like incorrect SMTP settings, authentication errors, or server restrictions can prevent emails from being delivered. That\u2019s why it\u2019s essential to verify that your email setup works reliably before deploying to production.<\/p>\n\n\n\n<p>Services like Twilio SendGrid help simplify email delivery, but proper testing ensures everything is configured correctly. In this blog, we\u2019ll walk through a simple way to test SendGrid SMTP using PHP.&nbsp;<\/p>\n\n\n\n<h2 class=\"wp-block-heading has-small-font-size\"><strong>Prerequisites<\/strong><\/h2>\n\n\n\n<p>Before you begin, make sure you have:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>PHP installed<\/li>\n\n\n\n<li>Composer installed<\/li>\n\n\n\n<li>A SendGrid account and SMTP credentials.<br><\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading has-small-font-size\"><strong>Steps to Test SMTP<\/strong><\/h2>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\"><strong>1. Create a project<\/strong><\/h3>\n\n\n\n<p>With the prerequisites completed, create a project folder for this:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>mkdir send_mail\n\ncd send_mail<\/code><\/pre>\n\n\n\n<p>Then initialize your project. For that if you are using SendGrid SDK, run the following Composer command.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>composer require sendgrid\/sendgrid<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\"><strong>2. Write the PHP Script<\/strong><\/h3>\n\n\n\n<p>You&#8217;re now ready to write some code to send your first email. Start by creating a new <a href=\"https:\/\/www.php.net\/\" type=\"link\" id=\"https:\/\/www.php.net\/\"><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-secondary-color\">PHP<\/mark><\/a> file named send_mail.php in the root of your project directory.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;?php\n\ndeclare(strict_types=1);\n\nrequire 'vendor\/autoload.php';\n\nuse \\SendGrid\\Mail\\Mail;\n\n$email = new Mail();\n\/\/ Replace the email address and name with your verified sender\n$email-&gt;setFrom(\n    'sender@domain.com',\n    'Example Sender'\n);\n$email-&gt;setSubject('Sending a Test mail with SendGrid is Fun');\n\/\/ Replace the email address and name with your recipient\n$email-&gt;addTo(\n    'recipient@domain.com',\n    'Example Recipient'\n);\n$email-&gt;addContent(\n    'text\/html',\n    '&lt;strong&gt;and fast with the PHP SDK.&lt;\/strong&gt;'\n);\n$sendgrid = new \\SendGrid('SENDGRID_API_KEY');\ntry {\n    $response = $sendgrid-&gt;send($email);\n    printf(\"Response status: %d\\n\\n\", $response-&gt;statusCode());\n\n    $headers = array_filter($response-&gt;headers());\n    echo \"Response Headers\\n\\n\";\n    foreach ($headers as $header) {\n        echo '- ' . $header . \"\\n\";\n    }\n} catch (Exception $e) {\n    echo 'Caught exception: '. $e-&gt;getMessage() .\"\\n\";\n}<\/code><\/pre>\n\n\n\n<p>Update your PHP script with your specified details:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Recipient email<\/li>\n\n\n\n<li>Sender email<\/li>\n\n\n\n<li>Password: Your SendGrid API Key<\/li>\n\n\n\n<li>Any messages you want to test<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\"><strong>3. Configure SMTP Settings<\/strong><\/h3>\n\n\n\n<p>Update your env file with SendGrid SMTP details:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Host: smtp.sendgrid.net<\/li>\n\n\n\n<li>Username: apikey<\/li>\n\n\n\n<li>Password: Your SendGrid API Key<\/li>\n\n\n\n<li>Port: 587\/467\/2525<\/li>\n\n\n\n<li>Mail encryption: tls<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\"><strong>4. Run the Script<\/strong><\/h3>\n\n\n\n<p>Run via terminal:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>php test_smtp.php<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\"><strong>5. Verify Output<\/strong><\/h3>\n\n\n\n<p>If a 202 status code iis printed to the console, your message was sent successfully. Check the inbox of the addTo address, and you will see your demo message. If you don&#8217;t see the email, check your spam folder.<\/p>\n\n\n\n<h4 class=\"wp-block-heading has-small-font-size\"><strong>Conclusion<\/strong><\/h4>\n\n\n\n<p>Testing SendGrid SMTP with PHP is straightforward using PHPMailer. While SendGrid\u2019s official quickstart is helpful, a simple SMTP script\u2014like the one generated by Google Gemini\u2014can be more practical for quick testing and troubleshooting. Once verified, you can confidently integrate email functionality into your application.<\/p>\n\n\n\n<p>If you&#8217;re facing issues while performing a <strong>SendGrid SMTP test PHP<\/strong> or need expert help to configure and troubleshoot email delivery, our team is here to assist. With deep expertise in SMTP setup, PHP scripting, and reliable email solutions, we ensure your emails are sent securely and efficiently. Our <a href=\"https:\/\/www.skynats.com\/upcloud-management\" type=\"link\" id=\"https:\/\/www.skynats.com\/upcloud-management\">Managed Cloud Services<\/a> provide end-to-end support\u2014from setup to ongoing monitoring\u2014so you can focus on your business while we handle the technical complexities. Get in touch with us today for fast, reliable support!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Introduction Testing email functionality from your server is an important step in building any web application. Even if your code is correct, issues like incorrect SMTP settings, authentication errors, or server restrictions can prevent emails from being delivered. That\u2019s why it\u2019s essential to verify that your email setup works reliably before deploying to production. Services [&hellip;]<\/p>\n","protected":false},"author":16,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[5],"tags":[1275,260,1274,302,1273],"class_list":["post-17524","post","type-post","status-publish","format-standard","hentry","category-blog","tag-managed-cloud-services","tag-php","tag-sendgrid-sdk","tag-server-management-services","tag-smtp"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v25.9 (Yoast SEO v27.3) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>SendGrid SMTP Test PHP: Quick &amp; Easy Guide<\/title>\n<meta name=\"description\" content=\"Test SendGrid SMTP with PHP easily. Follow this quick guide to run a SendGrid SMTP test PHP script\u2014start sending emails now!\" \/>\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.skynats.com\/blog\/how-to-test-sendgrid-smtp-using-a-php-script\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Test SendGrid SMTP Using a PHP Script\" \/>\n<meta property=\"og:description\" content=\"Test SendGrid SMTP with PHP easily. Follow this quick guide to run a SendGrid SMTP test PHP script\u2014start sending emails now!\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.skynats.com\/blog\/how-to-test-sendgrid-smtp-using-a-php-script\/\" \/>\n<meta property=\"og:site_name\" content=\"Server Management Services | Cloud Management | Skynats\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/skynats\" \/>\n<meta property=\"article:published_time\" content=\"2026-04-02T06:37:37+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-04-02T06:37:39+00:00\" \/>\n<meta name=\"author\" content=\"Merin John\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@skynatstech\" \/>\n<meta name=\"twitter:site\" content=\"@skynatstech\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Merin John\" \/>\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:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-test-sendgrid-smtp-using-a-php-script\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-test-sendgrid-smtp-using-a-php-script\\\/\"},\"author\":{\"name\":\"Merin John\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/person\\\/b80e05405ba11197c3f60db56df40ded\"},\"headline\":\"How to Test SendGrid SMTP Using a PHP Script\",\"datePublished\":\"2026-04-02T06:37:37+00:00\",\"dateModified\":\"2026-04-02T06:37:39+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-test-sendgrid-smtp-using-a-php-script\\\/\"},\"wordCount\":413,\"publisher\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#organization\"},\"keywords\":[\"Managed Cloud Services\",\"Php\",\"SendGrid SDK\",\"server management services\",\"SMTP\"],\"articleSection\":[\"Blog\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-test-sendgrid-smtp-using-a-php-script\\\/\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-test-sendgrid-smtp-using-a-php-script\\\/\",\"name\":\"SendGrid SMTP Test PHP: Quick & Easy Guide\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#website\"},\"datePublished\":\"2026-04-02T06:37:37+00:00\",\"dateModified\":\"2026-04-02T06:37:39+00:00\",\"description\":\"Test SendGrid SMTP with PHP easily. Follow this quick guide to run a SendGrid SMTP test PHP script\u2014start sending emails now!\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-test-sendgrid-smtp-using-a-php-script\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-test-sendgrid-smtp-using-a-php-script\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-test-sendgrid-smtp-using-a-php-script\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Test SendGrid SMTP Using a PHP Script\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/\",\"name\":\"Server Management Services | Cloud Management | Skynats\",\"description\":\"Server Management and Cloud Management\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#organization\",\"name\":\"Skynats Technologies\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/08\\\/Sknats-Logo-New-whole.png\",\"contentUrl\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/08\\\/Sknats-Logo-New-whole.png\",\"width\":989,\"height\":367,\"caption\":\"Skynats Technologies\"},\"image\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/skynats\",\"https:\\\/\\\/x.com\\\/skynatstech\",\"https:\\\/\\\/www.instagram.com\\\/skynatstech\\\/\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/skynats-technologies\",\"https:\\\/\\\/www.youtube.com\\\/channel\\\/UCvTAjrFJ4_E2MJKwlDHomlg\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/person\\\/b80e05405ba11197c3f60db56df40ded\",\"name\":\"Merin John\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/c6fda6ca622259bc47ba01df18b391ee9e0540db86283334dea33951c4fa19b8?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/c6fda6ca622259bc47ba01df18b391ee9e0540db86283334dea33951c4fa19b8?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/c6fda6ca622259bc47ba01df18b391ee9e0540db86283334dea33951c4fa19b8?s=96&d=mm&r=g\",\"caption\":\"Merin John\"}}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"SendGrid SMTP Test PHP: Quick & Easy Guide","description":"Test SendGrid SMTP with PHP easily. Follow this quick guide to run a SendGrid SMTP test PHP script\u2014start sending emails now!","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.skynats.com\/blog\/how-to-test-sendgrid-smtp-using-a-php-script\/","og_locale":"en_US","og_type":"article","og_title":"How to Test SendGrid SMTP Using a PHP Script","og_description":"Test SendGrid SMTP with PHP easily. Follow this quick guide to run a SendGrid SMTP test PHP script\u2014start sending emails now!","og_url":"https:\/\/www.skynats.com\/blog\/how-to-test-sendgrid-smtp-using-a-php-script\/","og_site_name":"Server Management Services | Cloud Management | Skynats","article_publisher":"https:\/\/www.facebook.com\/skynats","article_published_time":"2026-04-02T06:37:37+00:00","article_modified_time":"2026-04-02T06:37:39+00:00","author":"Merin John","twitter_card":"summary_large_image","twitter_creator":"@skynatstech","twitter_site":"@skynatstech","twitter_misc":{"Written by":"Merin John","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.skynats.com\/blog\/how-to-test-sendgrid-smtp-using-a-php-script\/#article","isPartOf":{"@id":"https:\/\/www.skynats.com\/blog\/how-to-test-sendgrid-smtp-using-a-php-script\/"},"author":{"name":"Merin John","@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/person\/b80e05405ba11197c3f60db56df40ded"},"headline":"How to Test SendGrid SMTP Using a PHP Script","datePublished":"2026-04-02T06:37:37+00:00","dateModified":"2026-04-02T06:37:39+00:00","mainEntityOfPage":{"@id":"https:\/\/www.skynats.com\/blog\/how-to-test-sendgrid-smtp-using-a-php-script\/"},"wordCount":413,"publisher":{"@id":"https:\/\/www.skynats.com\/blog\/#organization"},"keywords":["Managed Cloud Services","Php","SendGrid SDK","server management services","SMTP"],"articleSection":["Blog"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.skynats.com\/blog\/how-to-test-sendgrid-smtp-using-a-php-script\/","url":"https:\/\/www.skynats.com\/blog\/how-to-test-sendgrid-smtp-using-a-php-script\/","name":"SendGrid SMTP Test PHP: Quick & Easy Guide","isPartOf":{"@id":"https:\/\/www.skynats.com\/blog\/#website"},"datePublished":"2026-04-02T06:37:37+00:00","dateModified":"2026-04-02T06:37:39+00:00","description":"Test SendGrid SMTP with PHP easily. Follow this quick guide to run a SendGrid SMTP test PHP script\u2014start sending emails now!","breadcrumb":{"@id":"https:\/\/www.skynats.com\/blog\/how-to-test-sendgrid-smtp-using-a-php-script\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.skynats.com\/blog\/how-to-test-sendgrid-smtp-using-a-php-script\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.skynats.com\/blog\/how-to-test-sendgrid-smtp-using-a-php-script\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.skynats.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Test SendGrid SMTP Using a PHP Script"}]},{"@type":"WebSite","@id":"https:\/\/www.skynats.com\/blog\/#website","url":"https:\/\/www.skynats.com\/blog\/","name":"Server Management Services | Cloud Management | Skynats","description":"Server Management and Cloud Management","publisher":{"@id":"https:\/\/www.skynats.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.skynats.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.skynats.com\/blog\/#organization","name":"Skynats Technologies","url":"https:\/\/www.skynats.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.skynats.com\/blog\/wp-content\/uploads\/2021\/08\/Sknats-Logo-New-whole.png","contentUrl":"https:\/\/www.skynats.com\/blog\/wp-content\/uploads\/2021\/08\/Sknats-Logo-New-whole.png","width":989,"height":367,"caption":"Skynats Technologies"},"image":{"@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/skynats","https:\/\/x.com\/skynatstech","https:\/\/www.instagram.com\/skynatstech\/","https:\/\/www.linkedin.com\/company\/skynats-technologies","https:\/\/www.youtube.com\/channel\/UCvTAjrFJ4_E2MJKwlDHomlg"]},{"@type":"Person","@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/person\/b80e05405ba11197c3f60db56df40ded","name":"Merin John","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/c6fda6ca622259bc47ba01df18b391ee9e0540db86283334dea33951c4fa19b8?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/c6fda6ca622259bc47ba01df18b391ee9e0540db86283334dea33951c4fa19b8?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/c6fda6ca622259bc47ba01df18b391ee9e0540db86283334dea33951c4fa19b8?s=96&d=mm&r=g","caption":"Merin John"}}]}},"_links":{"self":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/17524","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/users\/16"}],"replies":[{"embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/comments?post=17524"}],"version-history":[{"count":2,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/17524\/revisions"}],"predecessor-version":[{"id":17526,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/17524\/revisions\/17526"}],"wp:attachment":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/media?parent=17524"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/categories?post=17524"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/tags?post=17524"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}