{"id":12961,"date":"2026-09-08T15:53:27","date_gmt":"2026-09-08T15:53:27","guid":{"rendered":"https:\/\/cryptonews.uk.com\/?p=12961"},"modified":"2026-09-08T15:53:27","modified_gmt":"2026-09-08T15:53:27","slug":"who-controls-an-ai-wallets-spending","status":"publish","type":"post","link":"https:\/\/cryptonews.uk.com\/?p=12961","title":{"rendered":"Who controls an AI wallet\u2019s spending?"},"content":{"rendered":"<p><img decoding=\"async\" src=\"https:\/\/cryptoslate.com\/wp-content\/uploads\/2026\/09\/tether-ai-wallet-control.jpg\" \/><\/p>\n<div data-single-article-content=\"\">\n<p>Tether CEO Paolo Ardoino\u2019s vision of financial autonomy for people and machines puts a practical decision in developers\u2019 hands: how much spending authority should an AI agent receive when a wallet\u2019s owner unlocks it?<\/p>\n<p>Tether\u2019s Sept. 3 explanation of WDK CLI, the local command-line wallet built with its Wallet Development Kit, gives a concrete answer for that product. The human opens a timed session. On macOS and Linux, another process running as the wallet owner can request transactions if it can reach the unlocked wallet\u2019s local endpoint. The CLI daemon does not require fresh approval of each payment.<\/p>\n<p>That distinction matters for anyone building an assistant that can move money. Keeping wallet keys under the owner\u2019s control establishes custody. Deciding which recipient, amount and operation an automated system may authorize is a separate design choice.<\/p>\n<p>Ardoino set out the broader ambition when Tether announced WDK on Nov. 11, 2024. His statement described programmable monetary systems connecting people, machines and AI agents while preserving financial control. The September explanation shows how that longstanding strategy translates into one local wallet interface.<\/p>\n<div class=\"cs-article-embed\">\n<p> <span class=\"cs-article-embed__related-reading\">Related Reading<\/span><\/p>\n<h3 class=\"cs-article-embed__title\">AI agents employ $24M market to act smarter as agentic crypto payments spread online<\/h3>\n<\/p>\n<p> <span class=\"cs-article-embed__arrow\" aria-hidden=\"true\"> <i class=\"fa-light fa-arrow-up-right\"\/> <\/span> <\/div>\n<p>It also shows why the answer cannot be reduced to whether WDK \u201chas safeguards.\u201d Its CLI, software development kit and customizable MCP Toolkit offer different controls at different points in the transaction process. A developer\u2019s choice of integration determines which protections apply.<\/p>\n<h2>Unlocking grants a session<\/h2>\n<p>The CLI documentation describes three components: terminal commands, a background process called a daemon that holds the unlocked wallet, and a bundled Model Context Protocol server. MCP lets an AI client call structured software tools. Both interfaces use the same local wallet.<\/p>\n<p>Under the documented security model, a locked seed is encrypted with AES-256-GCM using a key derived through scrypt. Unlocking changes the access model. On macOS and Linux, the daemon\u2019s socket is restricted to its operating-system owner, but it has no separate credential for each program.<\/p>\n<p>A process running as that owner, if it can reach the socket, can ask the unlocked wallet to sign without knowing or re-entering the passphrase. The account boundary therefore matters alongside the wallet password.<\/p>\n<p>The default session lasts five minutes from unlock. Ordinary activity does not extend it. The user can lock the wallet sooner, explicitly unlock it again to reset the timer, or disable automatic expiry with a zero lifetime.<\/p>\n<p>These are useful session controls. They determine when access begins and ends. A short timer, however, does not by itself establish an amount limit or require a fresh decision about each recipient.<\/p>\n<p>Tether describes the same-user access as an accepted hot-wallet trade-off. Its precautions include a dedicated wallet with limited funds, short sessions and separation under a dedicated operating-system account. These are disclosed operating constraints, not a reported theft or exploit.<\/p>\n<p>The bundled MCP interface keeps wallet creation, seed export, unlocking and other administration outside its tool menu. That reduces what an agent can request through that server. It does not confine an AI client that also has independent shell access.<\/p>\n<p>For transfers, the MCP guide says <code>send_token<\/code> defaults to a dry run. The recommended sequence is to preview a payment, show its network, token, recipient, amount and estimated fee, obtain confirmation, then execute.<\/p>\n<p>The daemon does not require proof that those earlier steps happened. An otherwise valid execution request can broadcast from an unlocked wallet. A second route, <code>call_method<\/code>, can invoke declared chain-specific write operations without a dry run or enforced confirmation.<\/p>\n<p>That makes the location of the check consequential. A client can present a careful approval screen while the underlying wallet remains willing to accept requests through another permitted path. For that screen to define spending authority, the product must control the other paths too.<\/p>\n<aside id=\"cs-inline-newsletter-1\" class=\"cs-inline-newsletter\" data-inline-newsletter=\"\" data-newsletter-placement=\"article-midpoint\" data-newsletter-pending-label=\"Joining\u2026\" data-newsletter-pending-status=\"Joining the Daily Brief\u2026\" data-newsletter-email-required-message=\"Before sending, please provide your email address.\" aria-labelledby=\"cs-inline-newsletter-1-title\" aria-describedby=\"cs-inline-newsletter-1-copy\">\n<div class=\"cs-inline-newsletter__inner\">\n<div class=\"cs-inline-newsletter__content\"> <span class=\"cs-inline-newsletter__eyebrow\"> <i class=\"fa-regular fa-envelope\" aria-hidden=\"true\"\/> The Daily Brief <\/span><\/p>\n<h2 id=\"cs-inline-newsletter-1-title\" class=\"cs-inline-newsletter__title\">The signal, before the noise.<\/h2>\n<p id=\"cs-inline-newsletter-1-copy\" class=\"cs-inline-newsletter__copy\">Start your day with the crypto stories moving markets, decoded by CryptoSlate\u2019s editors.<\/p>\n<\/div>\n<div class=\"cs-inline-newsletter__form-shell\">\n<p class=\"cs-inline-newsletter__form-heading\">One email. Everything that matters.<\/p>\n<p id=\"cs-inline-newsletter-1-privacy\" class=\"cs-inline-newsletter__privacy\">Free to join. Unsubscribe any time.<\/p>\n<p> <i class=\"fa-regular fa-circle-xmark\" aria-hidden=\"true\"\/> <span>Whoops, looks like there was a problem. Please try again.<\/span><\/p>\n<p> <i class=\"fa-regular fa-circle-check\" aria-hidden=\"true\"\/> <span><strong>You\u2019re on the list.<\/strong> Your next Daily Brief is on its way.<\/span><\/p>\n<\/div>\n<\/div>\n<\/aside>\n<p>The documentation\u2019s tool counts need a qualification. The September blog mixes references to eleven tools with a nine-tool table, while the current MCP guide lists eleven. The additional entries are <code>list_methods<\/code> and <code>call_method<\/code>. Their significance is the ability to discover and invoke declared methods, rather than the size of the menu.<\/p>\n<p>There is also a version mismatch. The CLI guide describes <code>1.0.0-beta.3<\/code>, while Tether\u2019s Aug. 27 changelog records beta.4. That entry describes a configuration-override fix and says public commands, configuration keys and stored-data behavior are otherwise unchanged. The guide\u2019s beta.3 label therefore should not be read as the latest release number.<\/p>\n<h2>WDK offers more than the CLI\u2019s controls<\/h2>\n<p>Developers building an application can use WDK\u2019s SDK directly. Its local transaction policies provide configurable ALLOW and DENY rules before governed wallet or protocol operations execute. Examples cover approved recipients and amount conditions.<\/p>\n<p>Those checks can block a governed call. They are opt-in local controls, with a defined scope, rather than rules enforced on the blockchain. The documentation says they are not a complete sandbox: separately retained raw account references and certain internal module calls remain outside their interception.<\/p>\n<p>The SDK also leaves important inputs to the application. It does not automatically maintain recipient lists, fetch prices, decode contract-call data or persist spending counters. Developers own durability and concurrency when a limit depends on cumulative activity.<\/p>\n<p>A daily budget illustrates the consequence. Checking the size of one payment cannot establish how much an agent has already spent that day. A product must record prior spending and handle simultaneous requests consistently if it promises a cumulative ceiling. The implication is that a cumulative budget needs application-level accounting as well as a check on each payment.<\/p>\n<div class=\"cs-article-embed\">\n<p> <span class=\"cs-article-embed__related-reading\">Related Reading<\/span><\/p>\n<h3 class=\"cs-article-embed__title\">MetaMask opens AI wallet for DeFi agents as security risks shift to user rules<\/h3>\n<\/p>\n<p> <span class=\"cs-article-embed__arrow\" aria-hidden=\"true\"> <i class=\"fa-light fa-arrow-up-right\"\/> <\/span> <\/div>\n<p>The separate MCP Toolkit, documented as beta.1, provides another approach. Tether says its built-in write tools use MCP elicitations to obtain explicit user approval before broadcasting. Its configuration options let developers expose read-only tools, choose individual operations or add their own.<\/p>\n<p>These approval flows deserve to be distinguished from the bundled CLI server\u2019s recommended preview sequence. Customization also means the developer must decide what any added operation is allowed to do.<\/p>\n<p>Tether\u2019s own division of uses places the CLI in local operator workflows, the SDK inside applications and the Toolkit in custom agent servers. That gives builders options as they move from experimentation to a product handling user funds.<\/p>\n<p>The choice involves a practical trade-off. Requiring a person to approve every payment gives that person a transaction-level decision. Allowing an agent to operate within a preset budget permits more automation, but requires a reliable rule for what counts against the budget and which operations it covers.<\/p>\n<div class=\"cs-article-embed\">\n<p> <span class=\"cs-article-embed__related-reading\">Related Reading<\/span><\/p>\n<h3 class=\"cs-article-embed__title\">Tiny x402 payments expose the approval gap holding AI agents back<\/h3>\n<\/p>\n<p> <span class=\"cs-article-embed__arrow\" aria-hidden=\"true\"> <i class=\"fa-light fa-arrow-up-right\"\/> <\/span> <\/div>\n<p>For a user, the meaningful promise is therefore specific: what can this assistant spend, where can it send funds, and what ends its authority? A wallet password or an approval prompt answers only part of that question unless the surrounding software makes the intended restriction effective.<\/p>\n<p>Ardoino\u2019s self-custody strategy gives developers the means to build without handing wallet ownership to a custodian. The next responsibility sits with the product: make the authority delegated to the agent match the limits the owner believes they have set.<\/p>\n<\/div>\n<p>AI,Featured,Payments,Wallets,payments,stablecoins,Tether,WDKAI,payments,stablecoins,Tether,WDK#controls #wallets #spending1788882807<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Tether CEO Paolo Ardoino\u2019s vision of financial autonomy for people and machines puts a practical decision in developers\u2019 hands: how much spending authority should an AI agent receive when a wallet\u2019s owner unlocks it? Tether\u2019s Sept. 3 explanation of WDK CLI, the local command-line wallet built with its Wallet Development Kit, gives a concrete answer<\/p>\n","protected":false},"author":1,"featured_media":12962,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[8],"tags":[1065,2128,167,2288,282,218,35,6802],"class_list":["post-12961","post","type-post","status-publish","format-standard","has-post-thumbnail","category-ethereum","tag-ai","tag-controls","tag-payments","tag-spending","tag-stablecoins","tag-tether","tag-wallets","tag-wdk"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v26.6 (Yoast SEO v26.6) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Who controls an AI wallet\u2019s spending? - Crypto News: Latest Cryptocurrency News and Analysis<\/title>\n<meta name=\"description\" content=\"Tether\u2019s WDK separates wallet access from payment approval, with different CLI, SDK and MCP Toolkit controls for AI spending.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/cryptonews.uk.com\/?p=12961\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Who controls an AI wallet\u2019s spending?\" \/>\n<meta property=\"og:description\" content=\"Tether\u2019s WDK separates wallet access from payment approval, with different CLI, SDK and MCP Toolkit controls for AI spending.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/cryptonews.uk.com\/?p=12961\" \/>\n<meta property=\"og:site_name\" content=\"Crypto News: Latest Cryptocurrency News and Analysis\" \/>\n<meta property=\"article:published_time\" content=\"2026-09-08T15:53:27+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/cryptonews.uk.com\/wp-content\/uploads\/2026\/09\/tether-ai-wallet-control.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1280\" \/>\n\t<meta property=\"og:image:height\" content=\"720\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"\u884c\u653f\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"\u884c\u653f\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/cryptonews.uk.com\/?p=12961\",\"url\":\"https:\/\/cryptonews.uk.com\/?p=12961\",\"name\":\"Who controls an AI wallet\u2019s spending? - Crypto News: Latest Cryptocurrency News and Analysis\",\"isPartOf\":{\"@id\":\"https:\/\/cryptonews.uk.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/cryptonews.uk.com\/?p=12961#primaryimage\"},\"image\":{\"@id\":\"https:\/\/cryptonews.uk.com\/?p=12961#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cryptonews.uk.com\/wp-content\/uploads\/2026\/09\/tether-ai-wallet-control.jpg\",\"datePublished\":\"2026-09-08T15:53:27+00:00\",\"author\":{\"@id\":\"https:\/\/cryptonews.uk.com\/#\/schema\/person\/822778c5844e0d16d43dce6630f4f1bf\"},\"description\":\"Tether\u2019s WDK separates wallet access from payment approval, with different CLI, SDK and MCP Toolkit controls for AI spending.\",\"breadcrumb\":{\"@id\":\"https:\/\/cryptonews.uk.com\/?p=12961#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/cryptonews.uk.com\/?p=12961\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/cryptonews.uk.com\/?p=12961#primaryimage\",\"url\":\"https:\/\/cryptonews.uk.com\/wp-content\/uploads\/2026\/09\/tether-ai-wallet-control.jpg\",\"contentUrl\":\"https:\/\/cryptonews.uk.com\/wp-content\/uploads\/2026\/09\/tether-ai-wallet-control.jpg\",\"width\":1280,\"height\":720},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/cryptonews.uk.com\/?p=12961#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/cryptonews.uk.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Who controls an AI wallet\u2019s spending?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/cryptonews.uk.com\/#website\",\"url\":\"https:\/\/cryptonews.uk.com\/\",\"name\":\"Crypto News: Latest Cryptocurrency News and Analysis\",\"description\":\"Latest Crypto &amp; Bitcoin News\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/cryptonews.uk.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/cryptonews.uk.com\/#\/schema\/person\/822778c5844e0d16d43dce6630f4f1bf\",\"name\":\"\u884c\u653f\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/cryptonews.uk.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/e4c2d23409b09e004cef3facbe677e95c5401f9e29680f3a311e0130c5748089?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/e4c2d23409b09e004cef3facbe677e95c5401f9e29680f3a311e0130c5748089?s=96&d=mm&r=g\",\"caption\":\"\u884c\u653f\"},\"sameAs\":[\"http:\/\/demo3.aiwalls.com\/coinbase\"],\"url\":\"https:\/\/cryptonews.uk.com\/?author=1\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Who controls an AI wallet\u2019s spending? - Crypto News: Latest Cryptocurrency News and Analysis","description":"Tether\u2019s WDK separates wallet access from payment approval, with different CLI, SDK and MCP Toolkit controls for AI spending.","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:\/\/cryptonews.uk.com\/?p=12961","og_locale":"en_US","og_type":"article","og_title":"Who controls an AI wallet\u2019s spending?","og_description":"Tether\u2019s WDK separates wallet access from payment approval, with different CLI, SDK and MCP Toolkit controls for AI spending.","og_url":"https:\/\/cryptonews.uk.com\/?p=12961","og_site_name":"Crypto News: Latest Cryptocurrency News and Analysis","article_published_time":"2026-09-08T15:53:27+00:00","og_image":[{"width":1280,"height":720,"url":"https:\/\/cryptonews.uk.com\/wp-content\/uploads\/2026\/09\/tether-ai-wallet-control.jpg","type":"image\/jpeg"}],"author":"\u884c\u653f","twitter_card":"summary_large_image","twitter_misc":{"Written by":"\u884c\u653f","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/cryptonews.uk.com\/?p=12961","url":"https:\/\/cryptonews.uk.com\/?p=12961","name":"Who controls an AI wallet\u2019s spending? - Crypto News: Latest Cryptocurrency News and Analysis","isPartOf":{"@id":"https:\/\/cryptonews.uk.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/cryptonews.uk.com\/?p=12961#primaryimage"},"image":{"@id":"https:\/\/cryptonews.uk.com\/?p=12961#primaryimage"},"thumbnailUrl":"https:\/\/cryptonews.uk.com\/wp-content\/uploads\/2026\/09\/tether-ai-wallet-control.jpg","datePublished":"2026-09-08T15:53:27+00:00","author":{"@id":"https:\/\/cryptonews.uk.com\/#\/schema\/person\/822778c5844e0d16d43dce6630f4f1bf"},"description":"Tether\u2019s WDK separates wallet access from payment approval, with different CLI, SDK and MCP Toolkit controls for AI spending.","breadcrumb":{"@id":"https:\/\/cryptonews.uk.com\/?p=12961#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/cryptonews.uk.com\/?p=12961"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/cryptonews.uk.com\/?p=12961#primaryimage","url":"https:\/\/cryptonews.uk.com\/wp-content\/uploads\/2026\/09\/tether-ai-wallet-control.jpg","contentUrl":"https:\/\/cryptonews.uk.com\/wp-content\/uploads\/2026\/09\/tether-ai-wallet-control.jpg","width":1280,"height":720},{"@type":"BreadcrumbList","@id":"https:\/\/cryptonews.uk.com\/?p=12961#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/cryptonews.uk.com\/"},{"@type":"ListItem","position":2,"name":"Who controls an AI wallet\u2019s spending?"}]},{"@type":"WebSite","@id":"https:\/\/cryptonews.uk.com\/#website","url":"https:\/\/cryptonews.uk.com\/","name":"Crypto News: Latest Cryptocurrency News and Analysis","description":"Latest Crypto &amp; Bitcoin News","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/cryptonews.uk.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/cryptonews.uk.com\/#\/schema\/person\/822778c5844e0d16d43dce6630f4f1bf","name":"\u884c\u653f","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/cryptonews.uk.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/e4c2d23409b09e004cef3facbe677e95c5401f9e29680f3a311e0130c5748089?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/e4c2d23409b09e004cef3facbe677e95c5401f9e29680f3a311e0130c5748089?s=96&d=mm&r=g","caption":"\u884c\u653f"},"sameAs":["http:\/\/demo3.aiwalls.com\/coinbase"],"url":"https:\/\/cryptonews.uk.com\/?author=1"}]}},"_links":{"self":[{"href":"https:\/\/cryptonews.uk.com\/index.php?rest_route=\/wp\/v2\/posts\/12961","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/cryptonews.uk.com\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/cryptonews.uk.com\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/cryptonews.uk.com\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/cryptonews.uk.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=12961"}],"version-history":[{"count":0,"href":"https:\/\/cryptonews.uk.com\/index.php?rest_route=\/wp\/v2\/posts\/12961\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/cryptonews.uk.com\/index.php?rest_route=\/wp\/v2\/media\/12962"}],"wp:attachment":[{"href":"https:\/\/cryptonews.uk.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=12961"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/cryptonews.uk.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=12961"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/cryptonews.uk.com\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=12961"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}