{"id":2851,"date":"2021-07-26T17:14:16","date_gmt":"2021-07-26T11:44:16","guid":{"rendered":"https:\/\/binaryterms.com\/?p=2851"},"modified":"2021-10-23T10:26:41","modified_gmt":"2021-10-23T04:56:41","slug":"stream-control-transport-protocol","status":"publish","type":"post","link":"https:\/\/binaryterms.com\/stream-control-transport-protocol.html","title":{"rendered":"Stream Control Transmission Protocol"},"content":{"rendered":"<p><strong>Stream control transmission protocol<\/strong> (SCTP) is also a transport layer protocol like TCP and UDP. SCTP protocol includes the best features of TCP and UDP along with this it also supports the new applications supporting voice over the internet. In this section, we will discuss the working of SCTP and we will also discuss services provided by SCTP along with its advantages.<\/p>\n<h2>Content: Stream Control Transmission Protocol (SCTP)<\/h2>\n<ol>\n<li><a href=\"#Introduction\">Introduction<\/a><\/li>\n<li><a href=\"#WorkingofSCTP\">Working of SCTP<\/a><\/li>\n<li><a href=\"#ServicesofSCTP\">Services of SCTP<\/a><\/li>\n<li><a href=\"#AdvantagesoverTCPandUDP\">Advantages over TCP and UDP<\/a><\/li>\n<\/ol>\n<p><a name=\"Introduction\"><\/a><\/p>\n<h3>Introduction<\/h3>\n<p>Stream control transmission protocol (SCTP) is one of the transport layer protocols. SCTP adopts most of the features of TCP protocol and it also includes the best feature of UDP protocol. Like TCP, SCTP is also a <strong>connection-orient protocol<\/strong>, if a process on the sender host wants to communicate with the process on the destination host then a connection has to be established between them, in SCTP we refer to it as an association.<\/p>\n<p>SCTP is also a <strong>reliable<\/strong> protocol as the safe arrival of the data packet at the receiver host is acknowledged. SCTP also provide <strong>flow, error<\/strong> and<strong> congestion<\/strong> control mechanism. SCTP also provides advanced services such as multiple streams and multihoming, which we will discuss later.<br \/>\n<a name=\"WorkingofSCTP\"><\/a><\/p>\n<h3>Working of Stream control transmission protocol<\/h3>\n<p>Whenever a process on the client-side wants to communicate with the process on the server side it needs to establish a connection between them. This is done using the \u2018four-way handshaking\u2019 protocol.<\/p>\n<p><em>Four-Way Handshake Protocol <\/em><\/p>\n<ol>\n<li>The client initially sends <strong>INIT<\/strong> data chunk to the server to signal the initiation of an association.<\/li>\n<li>When the INIT data chunk is received by the server it sends <strong>INIT-ACK<\/strong> in response to INIT. Along with the INIT-ACK, it holds a cookie that defines the current status of the server.<\/li>\n<li>When the client receives the INIT-ACK it sends a third packet <strong>COOKIE-ECHO<\/strong> which just echoes the cookies that were sent by the server. SCTP allow the COOKIE-ECHO packet to carry a data chunk.<\/li>\n<li>The server responds to the COOKIE-ECHO chunk with the <strong>COOKIE-ACK<\/strong> chunk. It is just an acknowledgement receipt of COOKIE-ACK. SCTP allow the COOKIE-ACK packet to carry a data chunk.<\/li>\n<\/ol>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-2856\" src=\"https:\/\/binaryterms.com\/wp-content\/uploads\/2021\/07\/Stream-Control-Transmission-Protocol-SCTP.jpg\" alt=\"Stream Control Transmission Protocol (SCTP)\" width=\"488\" height=\"496\" srcset=\"https:\/\/binaryterms.com\/wp-content\/uploads\/2021\/07\/Stream-Control-Transmission-Protocol-SCTP.jpg 488w, https:\/\/binaryterms.com\/wp-content\/uploads\/2021\/07\/Stream-Control-Transmission-Protocol-SCTP-295x300.jpg 295w\" sizes=\"auto, (max-width: 488px) 100vw, 488px\" \/><\/p>\n<p>These are the four steps of the four-way handshake protocol that establish a connection between two SCTP. We have also seen that from the third data chunk i.e., COOKIE-ECHO SCTP allows the exchange of data.<\/p>\n<p>Whenever a process gives a message to SCTP it establishes an association between the client and server. The association between the client and server let bidirectional data transfer between them.<\/p>\n<p>Whenever a process gives the message to SCTP, the message becomes a data chunk or data chunks (in case it is fragmented). A data chunk header is attached to each chunk and every data chunk consumes a TSN. If the client sends n data chunks then in SCTP, the server would only provide acknowledgement for the last received chunk i.e. the n<sup>th<\/sup> chunk.<\/p>\n<p>After communication, either side of the association can terminate the association. If one end had terminated the connection the other end would automatically stop sending the data chunks.<br \/>\n<a name=\"ServicesofSCTP\"><\/a><\/p>\n<h3>Services of Stream control transmission protocol<\/h3>\n<p><strong>1. Process-to-Process Communication<\/strong><\/p>\n<p>Like TCP, SCTP also provides process-to-process communication. Process-to-process communication lets the client computer process communicate and exchange data with the process on the server computer. SCTP protocol uses all the well-known ports that are used by TCP. Along with this it also uses some extra port numbers mainly for IP telephony.<\/p>\n<p><strong>2. Multiple Streams<\/strong><\/p>\n<p>In our previous content transmission control protocol, we have seen that TCP protocol allows streaming bytes of data from sender to receiver, making it a stream-oriented protocol. But in TCP, there is only a single stream between sender and receiver.<\/p>\n<p>If there is a loss of data at any point in the stream, it would block the rest of the data in the stream. This is fine if the data is not real-time. But if the client and server are dealing with real-time data such as audio or video stream then with a single data stream it would be a problem.<\/p>\n<p>To resolve this issue SCTP has come up with the multistream service where a single connection would have multiple streams of data and we call it an <strong>association<\/strong>. Now even if one data stream has been blocked, the rest of the data stream would deliver the data. Each data stream can be used for a specific type of data like text, audio, video etc.<\/p>\n<p><strong>3. Multihoming<\/strong><\/p>\n<p>Multihoming is where the host is connected to multiple IP addresses. Unlike TCP, SCTP supports multihoming, which allows multiple IP addresses at each end of the SCTP association. This makes the SCTP protocol fault-tolerant as if one of the IP interfaces fails then another can be used to deliver the data. The fault tolerance feature of SCTP allows hosts to send and receive real-time data such as IP telephony.<\/p>\n<p><strong>4. Full Duplex Communication<\/strong><\/p>\n<p>In full-duplex communication, both sender and receiver are able to send and receive data at the same time. SCTP allows sender and receiver to send and receive data packet in both the direction simultaneously. To achieve this both the connected SCTP host must implement sending and receiving buffer.<\/p>\n<p><strong>5. Connection-Oriented Service<\/strong><\/p>\n<p>SCTP is also a connection-oriented protocol where the two SCTP hosts in the network must establish a connection before starting communication. In SCTP the connection is referred to as <strong>association<\/strong>.<\/p>\n<p>First, an association is established between the two communicating hosts. Then data is exchanged between them in both the direction. After the communication is over the association is terminated.<\/p>\n<p><strong>6. Reliable Service<\/strong><\/p>\n<p>The SCTP provides reliable service. When a data packet arrives safely at the receiver host, its safe arrival is acknowledged by the receiver. If the sent data packet is not acknowledged within a certain period of time the corresponding data packet is resent.<br \/>\n<a name=\"AdvantagesoverTCPandUDP\"><\/a><\/p>\n<h3>Advantages of SCTP over TCP<\/h3>\n<ul>\n<li>SCTP provides a full-duplex communication that let both the end of the connection send and receives the message.<\/li>\n<li>With SCTP multihoming and multistreaming is possible.<\/li>\n<li>Delivery of data in SCTP is ordered.<\/li>\n<li>SCTP has error, flow and congestion control mechanisms.<\/li>\n<\/ul>\n<p>So, this is all about the stream control transport protocol which is a future generation transport layer protocol as it has many benefits over TCP and UDP protocol.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Stream control transmission protocol (SCTP) is also a transport layer protocol like TCP and UDP. SCTP protocol includes the best features of TCP and UDP along with this it also supports the new applications supporting voice over the internet. In this section, we will discuss the working of SCTP and we will also discuss services [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_genesis_hide_title":false,"_genesis_hide_breadcrumbs":false,"_genesis_hide_singular_image":false,"_genesis_hide_footer_widgets":false,"_genesis_custom_body_class":"","_genesis_custom_post_class":"","_genesis_layout":"","footnotes":""},"categories":[5],"tags":[],"class_list":{"0":"post-2851","1":"post","2":"type-post","3":"status-publish","4":"format-standard","6":"category-computer-networks","7":"entry"},"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.6 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>What is Stream Control Transmission Protocol? Working &amp; Advantages - Binary Terms<\/title>\n<meta name=\"description\" content=\"Stream control transmission protocol (SCTP) is a transport layer protocol and includes the best features of TCP and UDP.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/binaryterms.com\/stream-control-transport-protocol.html\" \/>\n<meta property=\"og:locale\" content=\"en_GB\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"What is Stream Control Transmission Protocol? Working &amp; Advantages - Binary Terms\" \/>\n<meta property=\"og:description\" content=\"Stream control transmission protocol (SCTP) is a transport layer protocol and includes the best features of TCP and UDP.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/binaryterms.com\/stream-control-transport-protocol.html\" \/>\n<meta property=\"og:site_name\" content=\"Binary Terms\" \/>\n<meta property=\"article:published_time\" content=\"2021-07-26T11:44:16+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-10-23T04:56:41+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/binaryterms.com\/wp-content\/uploads\/2021\/07\/Stream-Control-Transmission-Protocol-SCTP.jpg\" \/>\n<meta name=\"author\" content=\"Neha T\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Neha T\" \/>\n\t<meta name=\"twitter:label2\" content=\"Estimated reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/binaryterms.com\/stream-control-transport-protocol.html#article\",\"isPartOf\":{\"@id\":\"https:\/\/binaryterms.com\/stream-control-transport-protocol.html\"},\"author\":{\"name\":\"Neha T\",\"@id\":\"https:\/\/binaryterms.com\/#\/schema\/person\/e495f1d57f5c0a4c521cc3dba95661fe\"},\"headline\":\"Stream Control Transmission Protocol\",\"datePublished\":\"2021-07-26T11:44:16+00:00\",\"dateModified\":\"2021-10-23T04:56:41+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/binaryterms.com\/stream-control-transport-protocol.html\"},\"wordCount\":1041,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/binaryterms.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/binaryterms.com\/stream-control-transport-protocol.html#primaryimage\"},\"thumbnailUrl\":\"https:\/\/binaryterms.com\/wp-content\/uploads\/2021\/07\/Stream-Control-Transmission-Protocol-SCTP.jpg\",\"articleSection\":[\"Computer Networks\"],\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/binaryterms.com\/stream-control-transport-protocol.html#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/binaryterms.com\/stream-control-transport-protocol.html\",\"url\":\"https:\/\/binaryterms.com\/stream-control-transport-protocol.html\",\"name\":\"What is Stream Control Transmission Protocol? Working & Advantages - Binary Terms\",\"isPartOf\":{\"@id\":\"https:\/\/binaryterms.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/binaryterms.com\/stream-control-transport-protocol.html#primaryimage\"},\"image\":{\"@id\":\"https:\/\/binaryterms.com\/stream-control-transport-protocol.html#primaryimage\"},\"thumbnailUrl\":\"https:\/\/binaryterms.com\/wp-content\/uploads\/2021\/07\/Stream-Control-Transmission-Protocol-SCTP.jpg\",\"datePublished\":\"2021-07-26T11:44:16+00:00\",\"dateModified\":\"2021-10-23T04:56:41+00:00\",\"description\":\"Stream control transmission protocol (SCTP) is a transport layer protocol and includes the best features of TCP and UDP.\",\"breadcrumb\":{\"@id\":\"https:\/\/binaryterms.com\/stream-control-transport-protocol.html#breadcrumb\"},\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/binaryterms.com\/stream-control-transport-protocol.html\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\/\/binaryterms.com\/stream-control-transport-protocol.html#primaryimage\",\"url\":\"https:\/\/binaryterms.com\/wp-content\/uploads\/2021\/07\/Stream-Control-Transmission-Protocol-SCTP.jpg\",\"contentUrl\":\"https:\/\/binaryterms.com\/wp-content\/uploads\/2021\/07\/Stream-Control-Transmission-Protocol-SCTP.jpg\",\"width\":488,\"height\":496,\"caption\":\"Stream Control Transmission Protocol (SCTP)\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/binaryterms.com\/stream-control-transport-protocol.html#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/binaryterms.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Stream Control Transmission Protocol\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/binaryterms.com\/#website\",\"url\":\"https:\/\/binaryterms.com\/\",\"name\":\"Binary Terms\",\"description\":\"The Computer Science &amp; IT Guide\",\"publisher\":{\"@id\":\"https:\/\/binaryterms.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/binaryterms.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-GB\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/binaryterms.com\/#organization\",\"name\":\"Binary Terms\",\"url\":\"https:\/\/binaryterms.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\/\/binaryterms.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/binaryterms.com\/wp-content\/uploads\/2020\/05\/binary-terms-logo1.png\",\"contentUrl\":\"https:\/\/binaryterms.com\/wp-content\/uploads\/2020\/05\/binary-terms-logo1.png\",\"width\":400,\"height\":63,\"caption\":\"Binary Terms\"},\"image\":{\"@id\":\"https:\/\/binaryterms.com\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/binaryterms.com\/#\/schema\/person\/e495f1d57f5c0a4c521cc3dba95661fe\",\"name\":\"Neha T\",\"url\":\"https:\/\/binaryterms.com\/author\/author\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"What is Stream Control Transmission Protocol? Working & Advantages - Binary Terms","description":"Stream control transmission protocol (SCTP) is a transport layer protocol and includes the best features of TCP and UDP.","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:\/\/binaryterms.com\/stream-control-transport-protocol.html","og_locale":"en_GB","og_type":"article","og_title":"What is Stream Control Transmission Protocol? Working & Advantages - Binary Terms","og_description":"Stream control transmission protocol (SCTP) is a transport layer protocol and includes the best features of TCP and UDP.","og_url":"https:\/\/binaryterms.com\/stream-control-transport-protocol.html","og_site_name":"Binary Terms","article_published_time":"2021-07-26T11:44:16+00:00","article_modified_time":"2021-10-23T04:56:41+00:00","og_image":[{"url":"https:\/\/binaryterms.com\/wp-content\/uploads\/2021\/07\/Stream-Control-Transmission-Protocol-SCTP.jpg","type":"","width":"","height":""}],"author":"Neha T","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Neha T","Estimated reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/binaryterms.com\/stream-control-transport-protocol.html#article","isPartOf":{"@id":"https:\/\/binaryterms.com\/stream-control-transport-protocol.html"},"author":{"name":"Neha T","@id":"https:\/\/binaryterms.com\/#\/schema\/person\/e495f1d57f5c0a4c521cc3dba95661fe"},"headline":"Stream Control Transmission Protocol","datePublished":"2021-07-26T11:44:16+00:00","dateModified":"2021-10-23T04:56:41+00:00","mainEntityOfPage":{"@id":"https:\/\/binaryterms.com\/stream-control-transport-protocol.html"},"wordCount":1041,"commentCount":0,"publisher":{"@id":"https:\/\/binaryterms.com\/#organization"},"image":{"@id":"https:\/\/binaryterms.com\/stream-control-transport-protocol.html#primaryimage"},"thumbnailUrl":"https:\/\/binaryterms.com\/wp-content\/uploads\/2021\/07\/Stream-Control-Transmission-Protocol-SCTP.jpg","articleSection":["Computer Networks"],"inLanguage":"en-GB","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/binaryterms.com\/stream-control-transport-protocol.html#respond"]}]},{"@type":"WebPage","@id":"https:\/\/binaryterms.com\/stream-control-transport-protocol.html","url":"https:\/\/binaryterms.com\/stream-control-transport-protocol.html","name":"What is Stream Control Transmission Protocol? Working & Advantages - Binary Terms","isPartOf":{"@id":"https:\/\/binaryterms.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/binaryterms.com\/stream-control-transport-protocol.html#primaryimage"},"image":{"@id":"https:\/\/binaryterms.com\/stream-control-transport-protocol.html#primaryimage"},"thumbnailUrl":"https:\/\/binaryterms.com\/wp-content\/uploads\/2021\/07\/Stream-Control-Transmission-Protocol-SCTP.jpg","datePublished":"2021-07-26T11:44:16+00:00","dateModified":"2021-10-23T04:56:41+00:00","description":"Stream control transmission protocol (SCTP) is a transport layer protocol and includes the best features of TCP and UDP.","breadcrumb":{"@id":"https:\/\/binaryterms.com\/stream-control-transport-protocol.html#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https:\/\/binaryterms.com\/stream-control-transport-protocol.html"]}]},{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/binaryterms.com\/stream-control-transport-protocol.html#primaryimage","url":"https:\/\/binaryterms.com\/wp-content\/uploads\/2021\/07\/Stream-Control-Transmission-Protocol-SCTP.jpg","contentUrl":"https:\/\/binaryterms.com\/wp-content\/uploads\/2021\/07\/Stream-Control-Transmission-Protocol-SCTP.jpg","width":488,"height":496,"caption":"Stream Control Transmission Protocol (SCTP)"},{"@type":"BreadcrumbList","@id":"https:\/\/binaryterms.com\/stream-control-transport-protocol.html#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/binaryterms.com\/"},{"@type":"ListItem","position":2,"name":"Stream Control Transmission Protocol"}]},{"@type":"WebSite","@id":"https:\/\/binaryterms.com\/#website","url":"https:\/\/binaryterms.com\/","name":"Binary Terms","description":"The Computer Science &amp; IT Guide","publisher":{"@id":"https:\/\/binaryterms.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/binaryterms.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-GB"},{"@type":"Organization","@id":"https:\/\/binaryterms.com\/#organization","name":"Binary Terms","url":"https:\/\/binaryterms.com\/","logo":{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/binaryterms.com\/#\/schema\/logo\/image\/","url":"https:\/\/binaryterms.com\/wp-content\/uploads\/2020\/05\/binary-terms-logo1.png","contentUrl":"https:\/\/binaryterms.com\/wp-content\/uploads\/2020\/05\/binary-terms-logo1.png","width":400,"height":63,"caption":"Binary Terms"},"image":{"@id":"https:\/\/binaryterms.com\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/binaryterms.com\/#\/schema\/person\/e495f1d57f5c0a4c521cc3dba95661fe","name":"Neha T","url":"https:\/\/binaryterms.com\/author\/author"}]}},"_links":{"self":[{"href":"https:\/\/binaryterms.com\/wp-json\/wp\/v2\/posts\/2851","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/binaryterms.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/binaryterms.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/binaryterms.com\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/binaryterms.com\/wp-json\/wp\/v2\/comments?post=2851"}],"version-history":[{"count":7,"href":"https:\/\/binaryterms.com\/wp-json\/wp\/v2\/posts\/2851\/revisions"}],"predecessor-version":[{"id":3044,"href":"https:\/\/binaryterms.com\/wp-json\/wp\/v2\/posts\/2851\/revisions\/3044"}],"wp:attachment":[{"href":"https:\/\/binaryterms.com\/wp-json\/wp\/v2\/media?parent=2851"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/binaryterms.com\/wp-json\/wp\/v2\/categories?post=2851"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/binaryterms.com\/wp-json\/wp\/v2\/tags?post=2851"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}