{"id":277,"date":"2009-11-04T00:47:25","date_gmt":"2009-11-03T19:17:25","guid":{"rendered":"https:\/\/2thenew.online\/blog\/?p=277"},"modified":"2010-06-09T15:51:37","modified_gmt":"2010-06-09T10:21:37","slug":"identify-merchant-provider-from-the-given-credit-card-no","status":"publish","type":"post","link":"https:\/\/2thenew.online\/blog\/identify-merchant-provider-from-the-given-credit-card-no\/","title":{"rendered":"Identify merchant provider from the given credit card no."},"content":{"rendered":"<p>Hi Friends,<\/p>\n<p>I was working on the financial application, where the user doesn&#8217;t want to select merchant provider while feeding in credit card details and yet we needed to know the merchant provider. Following is the code that helped:<\/p>\n<blockquote>\n<div class=\"wp_syntax\">\n<div class=\"code\">\n<pre class=\"javascript\"> \r\nfunction getMerchantProvider(cardNo){                      \/\/cardNo is the credit card number\r\n\u00a0\u00a0\u00a0 var cards = new Array();\r\n    cards [0] = {cardName: \"Visa\",prefixes: \"4\"};\r\n\u00a0   cards [1] = {cardName: \"Mastercard\", prefixes: \"51,52,53,54,55\"};\r\n\u00a0   cards [2] = {cardName: \"DinersClub\", prefixes: \"300,301,302,303,304,305,36,38,55\"};\r\n\u00a0   cards [3] = {cardName: \"CarteBlanche\", prefixes: \"300,301,302,303,304,305,36,38\"};\r\n\u00a0   cards [4] = {cardName: \"American Express\", prefixes: \"34,37\"};\r\n\u00a0   cards [5] = {cardName: \"Discovery\",\u00a0 prefixes: \"6011,650\"};\r\n\u00a0   cards [6] = {cardName: \"JCB\", prefixes: \"3,1800,2131\"};\r\n\u00a0   cards [7] = {cardName: \"enRoute\", prefixes: \"2014,2149\"};\r\n\u00a0   cards [8] = {cardName: \"Solo\", prefixes: \"6334, 6767\"};\r\n\u00a0   cards [9] = {cardName: \"Switch\", prefixes: \"4903,4905,4911,4936,564182,633110,6333,6759\"};\r\n\u00a0   cards [10] = {cardName: \"Maestro\", prefixes: \"5020,6\"};\r\n\u00a0   cards [11] = {cardName: \"VisaElectron\", prefixes: \"417500,4917,4913\"};\r\n\u00a0\u00a0\u00a0 var prefix\r\n\u00a0\u00a0\u00a0 var cardType\r\n\r\n\u00a0\u00a0\u00a0 for(cardType=0; cardType&lt;cards.length; cardType++){\r\n\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 prefix = cards[cardType].prefixes.split(\",\");\r\n\u00a0\u00a0\u00a0\u00a0    for (i=0; i&lt;prefix.length; i++) {\r\n\u00a0\u00a0\u00a0\u00a0\u00a0        var exp = new RegExp (\"^\" + prefix[i]);\r\n\u00a0\u00a0\u00a0\u00a0\u00a0        if (exp.test (cardNo))\r\n                  return cards[cardType].cardName;\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0      \r\n   \u00a0\u00a0\u00a0 }\r\n\u00a0\u00a0\u00a0 }\r\n\u00a0\u00a0\u00a0\u00a0 return \"Invalid\";\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\r\n}\r\n<\/pre>\n<\/div>\n<\/div>\n<\/blockquote>\n<p>The above function returns merchant provider name if matching pattern is found and Invalid if not. Please make a note, this function doesn&#8217;t validates the credit card no.<\/p>\n<p>For the credit card number validation I used jquery extended validation plugin for credit card, which also needed to know the merchant provider for validation so this code helped. Extended credit card validation plugin can be found at <a href=\"http:\/\/www.ihwy.com\/labs\/jquery-validate-credit-card-extension.aspx\">http:\/\/www.ihwy.com\/labs\/jquery-validate-credit-card-extension.aspx<\/a><\/p>\n<p>Thanks!<\/p>\n<p>~~Amit Jain~~<br \/>\n<a href=\"mailto:amit@intelligrape.com\">amit@intelligrape.com<\/a><br \/>\nIntelliGrape Softwares<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Hi Friends, I was working on the financial application, where the user doesn&#8217;t want to select merchant provider while feeding in credit card details and yet we needed to know the merchant provider. Following is the code that helped: function getMerchantProvider(cardNo){ \/\/cardNo is the credit card number \u00a0\u00a0\u00a0 var cards = new Array(); cards [0] [&hellip;]<\/p>\n","protected":false},"author":7,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"iawp_total_views":14,"footnotes":""},"categories":[1],"tags":[139,55,141,27,140],"class_list":["post-277","post","type-post","status-publish","format-standard","hentry","category-technology","tag-credit-card-identification","tag-javascript","tag-javascript-validation","tag-jquery","tag-merchant-provider"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.0.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"Hi Friends, I was working on the financial application, where the user doesn&#039;t want to select merchant provider while feeding in credit card details and yet we needed to know the merchant provider. Following is the code that helped: function getMerchantProvider(cardNo){ \/\/cardNo is the credit card number var cards = new Array(); cards [0]\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Amit Jain\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/2thenew.online\/blog\/identify-merchant-provider-from-the-given-credit-card-no\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 5.0.0.1\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"TO THE NEW BLOG\" \/>\n\t\t<meta property=\"og:type\" content=\"blog\" \/>\n\t\t<meta property=\"og:title\" content=\"Identify merchant provider from the given credit card no. | TO THE NEW Blog\" \/>\n\t\t<meta property=\"og:description\" content=\"Hi Friends, I was working on the financial application, where the user doesn&#039;t want to select merchant provider while feeding in credit card details and yet we needed to know the merchant provider. Following is the code that helped: function getMerchantProvider(cardNo){ \/\/cardNo is the credit card number var cards = new Array(); cards [0]\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/2thenew.online\/blog\/identify-merchant-provider-from-the-given-credit-card-no\/\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/2thenew.online\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/2thenew.online\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:site\" content=\"@tothenew\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Identify merchant provider from the given credit card no. | TO THE NEW Blog\" \/>\n\t\t<meta name=\"twitter:description\" content=\"Hi Friends, I was working on the financial application, where the user doesn&#039;t want to select merchant provider while feeding in credit card details and yet we needed to know the merchant provider. Following is the code that helped: function getMerchantProvider(cardNo){ \/\/cardNo is the credit card number var cards = new Array(); cards [0]\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/2thenew.online\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/identify-merchant-provider-from-the-given-credit-card-no\\\/#article\",\"name\":\"Identify merchant provider from the given credit card no. | TO THE NEW Blog\",\"headline\":\"Identify merchant provider from the given credit card no.\",\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/amit\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\"},\"datePublished\":\"2009-11-04T00:47:25+05:30\",\"dateModified\":\"2010-06-09T15:51:37+05:30\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/identify-merchant-provider-from-the-given-credit-card-no\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/identify-merchant-provider-from-the-given-credit-card-no\\\/#webpage\"},\"articleSection\":\"Technology, credit card identification, javascript, javascript validation, jquery, merchant provider\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/identify-merchant-provider-from-the-given-credit-card-no\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.tothenew.com\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/#listItem\",\"name\":\"Technology\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/#listItem\",\"position\":2,\"name\":\"Technology\",\"item\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/identify-merchant-provider-from-the-given-credit-card-no\\\/#listItem\",\"name\":\"Identify merchant provider from the given credit card no.\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/identify-merchant-provider-from-the-given-credit-card-no\\\/#listItem\",\"position\":3,\"name\":\"Identify merchant provider from the given credit card no.\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/#listItem\",\"name\":\"Technology\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\",\"name\":\"TO THE NEW Blog\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/amit\\\/#author\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/amit\\\/\",\"name\":\"Amit Jain\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/identify-merchant-provider-from-the-given-credit-card-no\\\/#authorImage\",\"url\":\"https:\\\/\\\/newersworld-sf-static.tothenew.net\\\/prod\\\/profilePicFolder\\\/1cbbcbd3-718c-4d6d-829c-4e225ae91a1a_amit.jain@tothenew.com.jpg\",\"width\":96,\"height\":96,\"caption\":\"Amit Jain\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/identify-merchant-provider-from-the-given-credit-card-no\\\/#webpage\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/identify-merchant-provider-from-the-given-credit-card-no\\\/\",\"name\":\"Identify merchant provider from the given credit card no. | TO THE NEW Blog\",\"description\":\"Hi Friends, I was working on the financial application, where the user doesn't want to select merchant provider while feeding in credit card details and yet we needed to know the merchant provider. Following is the code that helped: function getMerchantProvider(cardNo){ \\\/\\\/cardNo is the credit card number var cards = new Array(); cards [0]\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/identify-merchant-provider-from-the-given-credit-card-no\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/amit\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/amit\\\/#author\"},\"datePublished\":\"2009-11-04T00:47:25+05:30\",\"dateModified\":\"2010-06-09T15:51:37+05:30\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/\",\"name\":\"TO THE NEW Blog\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Identify merchant provider from the given credit card no. | TO THE NEW Blog","description":"Hi Friends, I was working on the financial application, where the user doesn't want to select merchant provider while feeding in credit card details and yet we needed to know the merchant provider. Following is the code that helped: function getMerchantProvider(cardNo){ \/\/cardNo is the credit card number var cards = new Array(); cards [0]","canonical_url":"https:\/\/2thenew.online\/blog\/identify-merchant-provider-from-the-given-credit-card-no\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/2thenew.online\/blog\/identify-merchant-provider-from-the-given-credit-card-no\/#article","name":"Identify merchant provider from the given credit card no. | TO THE NEW Blog","headline":"Identify merchant provider from the given credit card no.","author":{"@id":"https:\/\/2thenew.online\/blog\/author\/amit\/#author"},"publisher":{"@id":"https:\/\/2thenew.online\/blog\/#organization"},"datePublished":"2009-11-04T00:47:25+05:30","dateModified":"2010-06-09T15:51:37+05:30","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/2thenew.online\/blog\/identify-merchant-provider-from-the-given-credit-card-no\/#webpage"},"isPartOf":{"@id":"https:\/\/2thenew.online\/blog\/identify-merchant-provider-from-the-given-credit-card-no\/#webpage"},"articleSection":"Technology, credit card identification, javascript, javascript validation, jquery, merchant provider"},{"@type":"BreadcrumbList","@id":"https:\/\/2thenew.online\/blog\/identify-merchant-provider-from-the-given-credit-card-no\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/2thenew.online\/blog#listItem","position":1,"name":"Home","item":"https:\/\/2thenew.online\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/2thenew.online\/blog\/category\/technology\/#listItem","name":"Technology"}},{"@type":"ListItem","@id":"https:\/\/2thenew.online\/blog\/category\/technology\/#listItem","position":2,"name":"Technology","item":"https:\/\/2thenew.online\/blog\/category\/technology\/","nextItem":{"@type":"ListItem","@id":"https:\/\/2thenew.online\/blog\/identify-merchant-provider-from-the-given-credit-card-no\/#listItem","name":"Identify merchant provider from the given credit card no."},"previousItem":{"@type":"ListItem","@id":"https:\/\/2thenew.online\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/2thenew.online\/blog\/identify-merchant-provider-from-the-given-credit-card-no\/#listItem","position":3,"name":"Identify merchant provider from the given credit card no.","previousItem":{"@type":"ListItem","@id":"https:\/\/2thenew.online\/blog\/category\/technology\/#listItem","name":"Technology"}}]},{"@type":"Organization","@id":"https:\/\/2thenew.online\/blog\/#organization","name":"TO THE NEW Blog","url":"https:\/\/2thenew.online\/blog\/"},{"@type":"Person","@id":"https:\/\/2thenew.online\/blog\/author\/amit\/#author","url":"https:\/\/2thenew.online\/blog\/author\/amit\/","name":"Amit Jain","image":{"@type":"ImageObject","@id":"https:\/\/2thenew.online\/blog\/identify-merchant-provider-from-the-given-credit-card-no\/#authorImage","url":"https:\/\/newersworld-sf-static.tothenew.net\/prod\/profilePicFolder\/1cbbcbd3-718c-4d6d-829c-4e225ae91a1a_amit.jain@tothenew.com.jpg","width":96,"height":96,"caption":"Amit Jain"}},{"@type":"WebPage","@id":"https:\/\/2thenew.online\/blog\/identify-merchant-provider-from-the-given-credit-card-no\/#webpage","url":"https:\/\/2thenew.online\/blog\/identify-merchant-provider-from-the-given-credit-card-no\/","name":"Identify merchant provider from the given credit card no. | TO THE NEW Blog","description":"Hi Friends, I was working on the financial application, where the user doesn't want to select merchant provider while feeding in credit card details and yet we needed to know the merchant provider. Following is the code that helped: function getMerchantProvider(cardNo){ \/\/cardNo is the credit card number var cards = new Array(); cards [0]","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/2thenew.online\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/2thenew.online\/blog\/identify-merchant-provider-from-the-given-credit-card-no\/#breadcrumblist"},"author":{"@id":"https:\/\/2thenew.online\/blog\/author\/amit\/#author"},"creator":{"@id":"https:\/\/2thenew.online\/blog\/author\/amit\/#author"},"datePublished":"2009-11-04T00:47:25+05:30","dateModified":"2010-06-09T15:51:37+05:30"},{"@type":"WebSite","@id":"https:\/\/2thenew.online\/blog\/#website","url":"https:\/\/2thenew.online\/blog\/","name":"TO THE NEW Blog","inLanguage":"en-US","publisher":{"@id":"https:\/\/2thenew.online\/blog\/#organization"}}]},"og:locale":"en_US","og:site_name":"TO THE NEW BLOG","og:type":"blog","og:title":"Identify merchant provider from the given credit card no. | TO THE NEW Blog","og:description":"Hi Friends, I was working on the financial application, where the user doesn't want to select merchant provider while feeding in credit card details and yet we needed to know the merchant provider. Following is the code that helped: function getMerchantProvider(cardNo){ \/\/cardNo is the credit card number var cards = new Array(); cards [0]","og:url":"https:\/\/2thenew.online\/blog\/identify-merchant-provider-from-the-given-credit-card-no\/","og:image":"https:\/\/2thenew.online\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","og:image:secure_url":"https:\/\/2thenew.online\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","twitter:card":"summary","twitter:site":"@tothenew","twitter:title":"Identify merchant provider from the given credit card no. | TO THE NEW Blog","twitter:description":"Hi Friends, I was working on the financial application, where the user doesn't want to select merchant provider while feeding in credit card details and yet we needed to know the merchant provider. Following is the code that helped: function getMerchantProvider(cardNo){ \/\/cardNo is the credit card number var cards = new Array(); cards [0]","twitter:image":"https:\/\/2thenew.online\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png"},"aioseo_meta_data":{"post_id":"277","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"Article","isEnabled":true},"graphs":[]},"schema_type":null,"schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"limit_modified_date":false,"created":"2021-04-30 08:17:00","updated":"2024-02-29 11:01:21","focus_keyword":null,"additional_keywords":null,"truseo_locale":null,"ai":null,"breadcrumb_settings":null,"seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/2thenew.online\/blog\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/2thenew.online\/blog\/category\/technology\/\" title=\"Technology\">Technology<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tIdentify merchant provider from the given credit card no.\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/2thenew.online\/blog"},{"label":"Technology","link":"https:\/\/2thenew.online\/blog\/category\/technology\/"},{"label":"Identify merchant provider from the given credit card no.","link":"https:\/\/2thenew.online\/blog\/identify-merchant-provider-from-the-given-credit-card-no\/"}],"_links":{"self":[{"href":"https:\/\/2thenew.online\/blog\/wp-json\/wp\/v2\/posts\/277","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/2thenew.online\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/2thenew.online\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/2thenew.online\/blog\/wp-json\/wp\/v2\/users\/7"}],"replies":[{"embeddable":true,"href":"https:\/\/2thenew.online\/blog\/wp-json\/wp\/v2\/comments?post=277"}],"version-history":[{"count":0,"href":"https:\/\/2thenew.online\/blog\/wp-json\/wp\/v2\/posts\/277\/revisions"}],"wp:attachment":[{"href":"https:\/\/2thenew.online\/blog\/wp-json\/wp\/v2\/media?parent=277"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/2thenew.online\/blog\/wp-json\/wp\/v2\/categories?post=277"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/2thenew.online\/blog\/wp-json\/wp\/v2\/tags?post=277"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}