{"id":29874,"date":"2024-11-12T12:40:19","date_gmt":"2024-11-12T12:40:19","guid":{"rendered":"https:\/\/www.seobility.net\/en\/blog\/wiki\/get-parameters\/"},"modified":"2025-02-26T09:23:09","modified_gmt":"2025-02-26T09:23:09","slug":"GET_Parameters","status":"publish","type":"wiki","link":"https:\/\/www.seobility.net\/en\/wiki\/GET_Parameters","title":{"rendered":"GET Parameters"},"content":{"rendered":"<h2><span class=\"mw-headline\" id=\"Definition\">Definition<\/span><\/h2>\n<div class=\"thumb tright\">\n<div class=\"thumbinner\" style=\"width:452px;\"><a href=\"https:\/\/www.seobility.net\/en\/wiki\/images\/4\/49\/GET-Parameters.png\"><img decoding=\"async\" alt=\"GET Parameters\" src=\"\/en\/wiki\/images\/thumb\/4\/49\/GET-Parameters.png\/450px-GET-Parameters.png\" width=\"450\" height=\"340\" class=\"thumbimage\" srcset=\"\/en\/wiki\/images\/thumb\/4\/49\/GET-Parameters.png\/675px-GET-Parameters.png 1.5x, \/en\/wiki\/images\/4\/49\/GET-Parameters.png 2x\" \/><\/a>  <\/p>\n<div class=\"thumbcaption\"><b>Figure:<\/b> GET Parameters &#8211; Author: Seobility &#8211; License: <a href=\"\/en\/wiki\/creative-commons-license-by-sa-4-0\" title=\"Creative Commons License BY-SA 4.0\">CC BY-SA 4.0<\/a><\/div>\n<\/div>\n<\/div>\n<p>GET parameters (also called URL parameters or query strings) are used when a client, such as a browser, requests a particular resource from a web server using the HTTP protocol.\n<\/p>\n<p>These parameters are usually name-value pairs, separated by an equals sign <code>=<\/code>. They can be used for a variety of things, as explained below.\n<\/p>\n<h2><span class=\"mw-headline\" id=\"What_do_URL_parameters_look_like.3F\">What do URL parameters look like?<\/span><\/h2>\n<p>An example URL could look like this:\n<\/p>\n<pre>https:\/\/www.example.com\/index.html?name1=value1&amp;name2=value2<\/pre>\n<p>GET parameters always start with a question mark <code>?<\/code>. This is followed by the name of the variable and the corresponding value, separated by an <code>=<\/code>. If an URL contains more than one parameter, they are separated by an Ampersand <code>&amp;<\/code>.\n<\/p>\n<p><img decoding=\"async\" alt=\"GET Parameter\" src=\"\/en\/wiki\/images\/thumb\/f\/fb\/Get-parameter-zaful.png\/650px-Get-parameter-zaful.png\" title=\"Screenshot showing what GET parameters look like\" width=\"650\" height=\"530\" class=\"thumbborder\" srcset=\"\/en\/wiki\/images\/f\/fb\/Get-parameter-zaful.png 1.5x, \/en\/wiki\/images\/f\/fb\/Get-parameter-zaful.png 2x\" \/>\n<\/p>\n<p>Screenshot of <a rel=\"nofollow\" class=\"external text\" href=\"https:\/\/www.zaful.com\/men-e_118\/?odr=new-arrivals\">Zaful.com<\/a> showing GET parameters.\n<\/p>\n<h2><span class=\"mw-headline\" id=\"Using_Get_Parameters\">Using Get Parameters<\/span><\/h2>\n<p>GET parameters can be divided into <strong>active and passive<\/strong>. Active parameters modify the content of a page, for example, by:\n<\/p>\n<ul>\n<li> <b>Filtering content:<\/b> <code>?type=green<\/code> displays only green products on an e-commerce site.<\/li>\n<li> <b>Sorting contents:<\/b> <code>?sort=price_ascending<\/code> sorts the displayed products by price, in this case ascending.<\/li>\n<\/ul>\n<p>Passive GET parameters, on the other hand, do not change a page&#8217;s content and are primarily used to collect user data. Application examples are among others:\n<\/p>\n<ul>\n<li> <b>Tracking of <a href=\"\/en\/wiki\/Session_ID\" title=\"Session ID\">Session IDs<\/a>:<\/b>&#160;?sessionid=12345 This allows visits of individual users to be saved if cookies were rejected.<\/li>\n<li> <b>Tracking of <a href=\"\/en\/wiki\/Website_Traffic\" title=\"Website Traffic\">website traffic<\/a>:<\/b><code>&#160;?utm_source=google<\/code> URL parameters can be used to track where your website visitors came from. These UTM (Urchin Tracking Module) parameters work with analytics tools and can help evaluate the success of a campaign. Besides <code>source<\/code>, there are <code>utm_medium<\/code>, <code>utm_campaign<\/code>, <code>utm_term<\/code>, and <code>utm_content<\/code>. More information can be found at Google&#8217;s <a rel=\"nofollow\" class=\"external text\" href=\"https:\/\/ga-dev-tools.appspot.com\/campaign-url-builder\/\">Campaign URL Builder<\/a>.<\/li>\n<\/ul>\n<h2><span class=\"mw-headline\" id=\"Potential_problems_related_to_GET_parameters\">Potential problems related to GET parameters<\/span><\/h2>\n<p>Too many subpages with URL parameters can negatively impact a website&#8217;s rankings. The most common problems regarding GET parameters are <strong>duplicate content, wasted crawl budget, and illegible URLs.<\/strong>\n<\/p>\n<h3><span class=\"mw-headline\" id=\"Duplicate_content\">Duplicate content<\/span><\/h3>\n<p>Generating GET parameters, for example, based on website filter settings, can cause serious problems with <a href=\"\/en\/wiki\/Duplicate_Content\" title=\"Duplicate Content\">duplicate content<\/a> on e-commerce sites. When shop visitors can use filters to sort or narrow the content on a page, additional URLs are generated. This happens even though the content of the pages does not necessarily differ. The following example illustrates this problem:\n<\/p>\n<div style=\"border-style:solid; border-width:1px;border-color:rgb(170, 170, 170);padding:10px;\">\nIf the URL of an e-commerce page contains the complete list of all existing products in ascending alphabetical order and the user sorts the products in descending order, the URL for the new sort is \/all-products.html?sort=Z-A.  In this case, the new URL has the same content as the original page, but in a different order. This is problematic because Google could consider this duplicate content. The consequence is that Google cannot determine the page to be displayed in the search results. Another problem is that Google does not know which ranking signals should be assigned to each URL, which divides the website\u2019s ranking properties between the two subpages.<\/div>\n<p>One solution to this problem is to uniquely define the relationship between the pages using <a href=\"\/en\/wiki\/Canonical_Tag\" title=\"Canonical Tag\">canonical tags<\/a>.\n<\/p>\n<p>Canonical tags indicate to search engines that certain pages should be treated as copies of a particular URL and all ranking properties should be credited to the canonical URL. A canonical tag can be inserted in the &lt;head&gt; area of the HTML document or alternatively in the <a href=\"\/en\/wiki\/HTTP_headers\" title=\"HTTP headers\">HTTP header<\/a> of the web page. If the canonical tag is implemented in the &lt;head&gt; area, the syntax is, for example:\n<\/p>\n<pre>&lt;link rel=\"canonical\" href=\"https:\/\/www.example.com\/all-products.html\"\/&gt;<\/pre>\n<p>If this link is added to all URLs that can result from different combinations of filters, the link equity of all these subpages is consolidated on the canonical URL and Google knows which page should be displayed in the SERPs.\n<\/p>\n<p>Canonical tags are therefore a simple solution to guide <a href=\"\/en\/wiki\/Search_Engine_Crawlers\" title=\"Search Engine Crawlers\">search engine crawlers<\/a> to the content they are supposed to index.\n<\/p>\n<h3><span class=\"mw-headline\" id=\"Waste_of_crawl_budget\">Waste of crawl budget<\/span><\/h3>\n<p>Google crawls a limited number of URLs per website. This amount of URLs is called crawl budget. More information can be found on the <a rel=\"nofollow\" class=\"external text\" href=\"https:\/\/www.seobility.net\/en\/blog\/crawl-budget-optimization\/\">Seobility Blog<\/a>.\n<\/p>\n<p>If a website has many crawlable URLs due to the use of URL parameters, Googlebot might spend the crawl budget for the wrong pages. One method to prevent this problem is the <a href=\"\/en\/wiki\/robots-txt\" title=\"Robots.txt\">robots.txt<\/a>. This can be used to specify that the Googlebot is not supposed to crawl URLs with certain parameters.\n<\/p>\n<h3><span class=\"mw-headline\" id=\"Illegible_URLs\">Illegible URLs<\/span><\/h3>\n<p>Too many parameters within a URL can make it difficult for users to read and remember the URL. Worst case, this can damage <a href=\"\/en\/wiki\/Usability\" title=\"Usability\">usability<\/a> and <a href=\"\/en\/wiki\/ctr-click-through-rate\" title=\"CTR (Click-Through Rate)\">click-through rates<\/a>.\n<\/p>\n<p>Generally, duplicate content, as well as problems with crawl budget, can be at least partially prevented by avoiding unnecessary parameters in a URL.\n<\/p>\n<h2><span class=\"mw-headline\" id=\"Related_links\">Related links<\/span><\/h2>\n<ul>\n<li> <a rel=\"nofollow\" class=\"external free\" href=\"https:\/\/support.google.com\/google-ads\/answer\/6277564?hl=en\">https:\/\/support.google.com\/google-ads\/answer\/6277564?hl=en<\/a><\/li>\n<\/ul>\n<h2><span class=\"mw-headline\" id=\"Similar_articles\">Similar articles<\/span><\/h2>\n<ul>\n<li> <a href=\"\/en\/wiki\/HTTP_headers\" title=\"HTTP headers\">HTTP headers<\/a><\/li>\n<\/ul>\n<p><script type=\"application\/ld+json\">\n    {\n      \"@context\": \"https:\/\/schema.org\/\",\n      \"@type\": \"ImageObject\",\n      \"contentUrl\": \"https:\/\/www.seobility.net\/en\/wiki\/images\/4\/49\/GET-Parameters.png\",\n      \"license\": \"https:\/\/creativecommons.org\/licenses\/by-sa\/4.0\/\",\n      \"acquireLicensePage\": \"https:\/\/www.seobility.net\/en\/wiki\/creative-commons-license-by-sa-4-0\"\n    }\n    <\/script>\n<\/p>\n<p><script type=\"application\/ld+json\">\n{\n  \"@context\": \"https:\/\/schema.org\",\n  \"@type\": \"Article\",\n  \"author\": {\n    \"@type\": \"Organization\",\n    \"name\": \"Seobility\",\n    \"url\": \"https:\/\/www.seobility.net\/\"\n  }\n}\n<\/script><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Definition Figure: GET Parameters &#8211; Author: Seobility &#8211; License: CC BY-SA 4.0 GET parameters (also called URL parameters or query strings) are used when a client, such as a browser, requests a particular resource from a web server using the HTTP protocol. These parameters are usually name-value pairs, separated by an equals sign =. They [&hellip;]<\/p>\n","protected":false},"author":38,"featured_media":0,"comment_status":"open","ping_status":"open","template":"","meta":{"_acf_changed":false,"inline_featured_image":false,"footnotes":""},"class_list":["post-29874","wiki","type-wiki","status-publish","hentry","wiki_categories-search-engine-optimization","wiki_categories-web-development"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>GET Parameters: Definition - Seobility Wiki<\/title>\n<meta name=\"description\" content=\"GET parameters are used when a client, such as a browser, requests a particular resource from a web server using the HTTP protocol.\" \/>\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.seobility.net\/en\/wiki\/GET_Parameters\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"GET Parameters: Definition - Seobility Wiki\" \/>\n<meta property=\"og:description\" content=\"GET parameters are used when a client, such as a browser, requests a particular resource from a web server using the HTTP protocol.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.seobility.net\/en\/wiki\/GET_Parameters\" \/>\n<meta property=\"og:site_name\" content=\"Seobility\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/seobility.net\/\" \/>\n<meta property=\"article:modified_time\" content=\"2025-02-26T09:23:09+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.seobility.net\/wp-content\/uploads\/2025\/06\/seobility-og-image.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"630\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:site\" content=\"@seobility_net\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"ScholarlyArticle\",\"@id\":\"https:\\\/\\\/www.seobility.net\\\/en\\\/wiki\\\/GET_Parameters#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.seobility.net\\\/en\\\/wiki\\\/GET_Parameters\"},\"author\":{\"name\":\"Seobility Wiki Team\",\"@id\":\"https:\\\/\\\/www.seobility.net\\\/en\\\/#\\\/schema\\\/person\\\/c838e66a3b46262b4c963df5cd5b2d8a\"},\"headline\":\"GET Parameters\",\"datePublished\":\"2024-11-12T12:40:19+00:00\",\"dateModified\":\"2025-02-26T09:23:09+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.seobility.net\\\/en\\\/wiki\\\/GET_Parameters\"},\"wordCount\":769,\"commentCount\":0,\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.seobility.net\\\/en\\\/wiki\\\/GET_Parameters#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.seobility.net\\\/en\\\/wiki\\\/GET_Parameters\",\"url\":\"https:\\\/\\\/www.seobility.net\\\/en\\\/wiki\\\/GET_Parameters\",\"name\":\"GET Parameters: Definition - Seobility Wiki\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.seobility.net\\\/en\\\/#website\"},\"datePublished\":\"2024-11-12T12:40:19+00:00\",\"dateModified\":\"2025-02-26T09:23:09+00:00\",\"description\":\"GET parameters are used when a client, such as a browser, requests a particular resource from a web server using the HTTP protocol.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.seobility.net\\\/en\\\/wiki\\\/GET_Parameters#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.seobility.net\\\/en\\\/wiki\\\/GET_Parameters\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.seobility.net\\\/en\\\/wiki\\\/GET_Parameters#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.seobility.net\\\/en\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Wiki\",\"item\":\"https:\\\/\\\/www.seobility.net\\\/en\\\/wiki\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"GET Parameters\",\"item\":\"https:\\\/\\\/www.seobility.net\\\/en\\\/wp-json\\\/wp\\\/v2\\\/wiki\\\/29874\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.seobility.net\\\/en\\\/#website\",\"url\":\"https:\\\/\\\/www.seobility.net\\\/en\\\/\",\"name\":\"Seobility\",\"description\":\"Online SEO Software &amp; Tools For Better Rankings\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.seobility.net\\\/en\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.seobility.net\\\/en\\\/#\\\/schema\\\/person\\\/c838e66a3b46262b4c963df5cd5b2d8a\",\"name\":\"Seobility Wiki Team\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.seobility.net\\\/wp-content\\\/uploads\\\/2025\\\/06\\\/Seobility-S-2025-150x150.png\",\"url\":\"https:\\\/\\\/www.seobility.net\\\/wp-content\\\/uploads\\\/2025\\\/06\\\/Seobility-S-2025-150x150.png\",\"contentUrl\":\"https:\\\/\\\/www.seobility.net\\\/wp-content\\\/uploads\\\/2025\\\/06\\\/Seobility-S-2025-150x150.png\",\"caption\":\"Seobility Wiki Team\"},\"description\":\"The Seobility Wiki team consists of seasoned SEOs, digital marketing professionals, and business experts with combined hands-on experience in SEO, online marketing and web development. All our articles went through a multi-level editorial process to provide you with the best possible quality and truly helpful information. Learn more about the people behind the Seobility Wiki.\",\"url\":\"https:\\\/\\\/www.seobility.net\\\/en\\\/blog\\\/author\\\/seobility-wiki-team\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"GET Parameters: Definition - Seobility Wiki","description":"GET parameters are used when a client, such as a browser, requests a particular resource from a web server using the HTTP protocol.","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.seobility.net\/en\/wiki\/GET_Parameters","og_locale":"en_US","og_type":"article","og_title":"GET Parameters: Definition - Seobility Wiki","og_description":"GET parameters are used when a client, such as a browser, requests a particular resource from a web server using the HTTP protocol.","og_url":"https:\/\/www.seobility.net\/en\/wiki\/GET_Parameters","og_site_name":"Seobility","article_publisher":"https:\/\/www.facebook.com\/seobility.net\/","article_modified_time":"2025-02-26T09:23:09+00:00","og_image":[{"width":1200,"height":630,"url":"https:\/\/www.seobility.net\/wp-content\/uploads\/2025\/06\/seobility-og-image.png","type":"image\/png"}],"twitter_card":"summary_large_image","twitter_site":"@seobility_net","twitter_misc":{"Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"ScholarlyArticle","@id":"https:\/\/www.seobility.net\/en\/wiki\/GET_Parameters#article","isPartOf":{"@id":"https:\/\/www.seobility.net\/en\/wiki\/GET_Parameters"},"author":{"name":"Seobility Wiki Team","@id":"https:\/\/www.seobility.net\/en\/#\/schema\/person\/c838e66a3b46262b4c963df5cd5b2d8a"},"headline":"GET Parameters","datePublished":"2024-11-12T12:40:19+00:00","dateModified":"2025-02-26T09:23:09+00:00","mainEntityOfPage":{"@id":"https:\/\/www.seobility.net\/en\/wiki\/GET_Parameters"},"wordCount":769,"commentCount":0,"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.seobility.net\/en\/wiki\/GET_Parameters#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.seobility.net\/en\/wiki\/GET_Parameters","url":"https:\/\/www.seobility.net\/en\/wiki\/GET_Parameters","name":"GET Parameters: Definition - Seobility Wiki","isPartOf":{"@id":"https:\/\/www.seobility.net\/en\/#website"},"datePublished":"2024-11-12T12:40:19+00:00","dateModified":"2025-02-26T09:23:09+00:00","description":"GET parameters are used when a client, such as a browser, requests a particular resource from a web server using the HTTP protocol.","breadcrumb":{"@id":"https:\/\/www.seobility.net\/en\/wiki\/GET_Parameters#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.seobility.net\/en\/wiki\/GET_Parameters"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.seobility.net\/en\/wiki\/GET_Parameters#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.seobility.net\/en\/"},{"@type":"ListItem","position":2,"name":"Wiki","item":"https:\/\/www.seobility.net\/en\/wiki"},{"@type":"ListItem","position":3,"name":"GET Parameters","item":"https:\/\/www.seobility.net\/en\/wp-json\/wp\/v2\/wiki\/29874"}]},{"@type":"WebSite","@id":"https:\/\/www.seobility.net\/en\/#website","url":"https:\/\/www.seobility.net\/en\/","name":"Seobility","description":"Online SEO Software &amp; Tools For Better Rankings","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.seobility.net\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.seobility.net\/en\/#\/schema\/person\/c838e66a3b46262b4c963df5cd5b2d8a","name":"Seobility Wiki Team","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.seobility.net\/wp-content\/uploads\/2025\/06\/Seobility-S-2025-150x150.png","url":"https:\/\/www.seobility.net\/wp-content\/uploads\/2025\/06\/Seobility-S-2025-150x150.png","contentUrl":"https:\/\/www.seobility.net\/wp-content\/uploads\/2025\/06\/Seobility-S-2025-150x150.png","caption":"Seobility Wiki Team"},"description":"The Seobility Wiki team consists of seasoned SEOs, digital marketing professionals, and business experts with combined hands-on experience in SEO, online marketing and web development. All our articles went through a multi-level editorial process to provide you with the best possible quality and truly helpful information. Learn more about the people behind the Seobility Wiki.","url":"https:\/\/www.seobility.net\/en\/blog\/author\/seobility-wiki-team\/"}]}},"_links":{"self":[{"href":"https:\/\/www.seobility.net\/en\/wp-json\/wp\/v2\/wiki\/29874","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.seobility.net\/en\/wp-json\/wp\/v2\/wiki"}],"about":[{"href":"https:\/\/www.seobility.net\/en\/wp-json\/wp\/v2\/types\/wiki"}],"author":[{"embeddable":true,"href":"https:\/\/www.seobility.net\/en\/wp-json\/wp\/v2\/users\/38"}],"replies":[{"embeddable":true,"href":"https:\/\/www.seobility.net\/en\/wp-json\/wp\/v2\/comments?post=29874"}],"version-history":[{"count":0,"href":"https:\/\/www.seobility.net\/en\/wp-json\/wp\/v2\/wiki\/29874\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.seobility.net\/en\/wp-json\/wp\/v2\/media?parent=29874"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}