{"id":3863,"date":"2018-09-12T11:04:00","date_gmt":"2018-09-12T11:04:00","guid":{"rendered":"https:\/\/www.futurum.tech\/blog\/?p=3863"},"modified":"2026-02-03T11:14:46","modified_gmt":"2026-02-03T11:14:46","slug":"ico","status":"publish","type":"post","link":"https:\/\/www.futurum.tech\/blog\/index.php\/2018\/09\/12\/ico\/","title":{"rendered":"The \u2018short\u2019 ICO tutorial"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">Do you have an excellent idea for an app? Maybe you want to establish a new, groundbreaking startup? Probably the first problem on your way to success will be to collect enough amount of money in blockchain.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Okey but it\u2019s not only your problem and a lot of people managed to do it before. So you can ask \u2018Uncle Google\u2019 for help. For sure one of the first results will be to organize an ICO. But what is it?<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">What is more I want to cover more technical part to show how it works, which could be interesting for people who want to learn the Ethereum technology.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">ICO<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">ICO (Initial Coin Offering) is a mechanism which allows you to collect cryptocurrency like BitCoin or Ether in exchange for your cryptocurrency or crypto-tokens. Simply speaking, it\u2019s just an easy, based on popularity of cryptocurrencies, way to collect money from investors. You receive cryptocurrency and offer your token which maybe will have a real value in the future or will be just a souvenir for investors.<br>I want to show you what is behind most of ICOs now.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Bitcoin, cryptocurrencies, blockchain, Ethereum, \u2026<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">You must have heard about Bitcoin and cryptocurrencies. And it\u2019s not only the lines on the graph that make you lose when it goes down or earn when it raises. Behind it there is an interesting algorithm which goal is to make it trustworthy and secure. It turns out that using the same approach we can do more than only transferring coins. And as always in IT world, when there is a need, there is a group of people that prepare a framework for it.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Probably in this way Ethereum was born. Ethereum uses similar technologies to BitCoin, it simplifies exchanging everything in a way that BitCoin does it with coins. Of course it\u2019s not the only tool to do it, but nowadays it is the most popular one.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Behind Ethereum (and BitCoin)<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Personally, I hate using technology not knowing what is behind it. So this is a really brief description how it is realized. You can skip it if you already know, for example, how BitCoin\/Ethereum works.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Blockchain<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Really catchy word now. But it is just a way of holding information using, not surprisingly, a chain of blocks. The main idea is to decentralize everything to eliminate a person or an institution which we have to trust in (for example in the traditional banking we have to trust a bank). In this concept everybody has a copy of a database so everything is transparent and there isn\u2019t a single person who can manipulate records in this database. If somebody did it, other users would reject his change. How is it realized? Using a simple one-directional list and a handful of cryptographic algorithms. Changes are added as the next block.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Mining<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">But how it is added? If we want to change something (make a transaction) we have to broadcast it to all other nodes in the Ethereum network. Then there are some special nodes called miners. Their task is to verify transaction and use some computational power to find an answer for a puzzle to confirm block of transactions. The first miner, that solves this, will receive a prize. And it makes it really hard to add manipulated block, because the potential attacker would have to have more computational power than the rest of the network, what is really expensive.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Keys<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">To confirm that you are you there is used pair of keys \u2013 private and public one. You sign transactions using the private key and then everybody can check that is was you using your public key. Nothing more than typical cryptographic algorithm, but it ensures than nobody can make transaction on your behalf.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">How to create it?<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Let\u2019s make two most typical things in Ethereum \u2013 a token and an ICO. Ethereum uses a language called Solidity to write smart contracts. I won\u2019t go into details of the syntax, I believe that it is pretty self-explanatory, even for a non-technical person.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Token<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">It is so popular and widely-used that there are even standards \u2018how to create token\u2019. But let\u2019s start from the simplest implementation:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>contract Token {     mapping(address =&gt; uint) private balances;        function balanceOf(address owner) public view returns (uint) {         return balances&#91;owner];     }      function transfer(address to, uint amount) public returns (bool) {         require(balances&#91;msg.sender] &gt;= amount);         balances&#91;msg.sender] -= amount;         balances&#91;to] += amount;         return true;     } }\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">I believe that this is really clear. We have a book (map technically speaking) called \u2018balances\u2019, where we keep current amount of coins for every account. We can check the current balance using the balanceOf() function. And the transfer() function in which we can give somebody some coins just by removing from our account and adding to theirs. Simple and insecure.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Problems<\/h2>\n\n\n\n<h5 class=\"wp-block-heading\">Coins from the air?<\/h5>\n\n\n\n<p class=\"wp-block-paragraph\">We can now exchange coins but we have to pose a question: \u2018What was at the beginning?\u2019. We have to setup an initial balance. There are two common approaches to do it: setup an initial balance which is immutable or add a mint function which only the owner of the token can invoke. Below there is the first way.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>contract Token {     uint private totalSupply;     constructor(uint _initialAmount) public {         totalSupply =_initialAmount;         balances&#91;msg.sender] = totalSuppply;     }     ... }\n<\/code><\/pre>\n\n\n\n<h5 class=\"wp-block-heading\">Long-time problem \u2013 overflows<\/h5>\n\n\n\n<p class=\"wp-block-paragraph\">The type uint in Solidity have 256 bits so it can hold really big numbers. But not infinite ones. There were a lot of attack based on integer overflow. To prevent it we can use SafeMath library which checks overflows for us. Typically <a href=\"https:\/\/github.com\/OpenZeppelin\/openzeppelin-solidity\/blob\/master\/contracts\/math\/SafeMath.sol\">zeppelin\u2019s one<\/a>.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>contract Token {     using SafeMath for uint;      ...      function transfer() public return (bool){       require(balances&#91;msg.sender] &gt;= amount);       balances&#91;msg.sender] = balances&#91;msg.sender].add(amount);       balances&#91;to] = balances&#91;to].sub(amount);       return true;     } }\n<\/code><\/pre>\n\n\n\n<h5 class=\"wp-block-heading\">Sending to contracts<\/h5>\n\n\n\n<p class=\"wp-block-paragraph\">One more problem occurs when we send tokens to contracts. There is a big possibility that they won\u2019t be able to handle them. Then our coins will be stuck in this contract forever. And that leads us to tokens\u2019 standards.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Token standards<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">The Ethereum community have established a lot of standards which determine functions that coins implementations should have.<\/p>\n\n\n\n<h5 class=\"wp-block-heading\">ERC20<\/h5>\n\n\n\n<p class=\"wp-block-paragraph\">This is the basic token standard which can be recognized by other apps. Besides the basic functionality it also supports functions like approve() and transferFrom() which enable us to delegate an address that will be able to manage part of our wealth for us. It is a little bit deprecated because of the problem with sending tokens to contract. Here is the interface which contract should implement to follow this standard:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>interface ERC20 {     function totalSupply() external view returns (uint256);     function balanceOf(address _who) external view returns (uint256);     function allowance(address _owner, address _spender) external view returns (uint256);     function transfer(address _to, uint256 _value) external returns (bool);     function approve(address _spender, uint256 _value) external returns (bool);     function transferFrom(address _from, address _to, uint256 _value) external returns (bool); }\n<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Summary<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">There are many very successful ICOs using the Ethereum ecosystem. Personally, I think that it is a worth to consider and relatively safe option for collecting donations based on popularity of cryptocurrencies. What is more it isn\u2019t hard and long to create it. After learning this technology and looking on some ICOs you can see that most of them are very similar and there are a lot of already created and tested libraries. Additionally, for me as a developer it was something new and interesting to learn. I covered only very basics in this article but I hope that I encouraged you to consider ICO as a fund-raising mechanism or to learn more about this technology.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Our mission is to support startups in achieving success. Feel free to<\/strong> <a href=\"https:\/\/www.futurum.tech\/#contact\"><strong>reach out<\/strong><\/a> <strong>with any inquiries, and visit our<\/strong> <a href=\"https:\/\/www.futurum.tech\/blog\/index.php\/category\/english\/\"><strong>blog<\/strong><\/a> <strong>for additional tips. Tune in to our<\/strong> <a href=\"https:\/\/www.youtube.com\/channel\/UCR1j3xpMdEa2EB0-s_B9TgQ\"><strong>podcast<\/strong><\/a> <strong>to glean insights from successful startup CEOs navigating their ventures.<\/strong><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Do you have an excellent idea for an app? Maybe you want to establish a new, groundbreaking startup? Probably the first problem on your way to success will be to collect enough&#8230;<\/p>\n","protected":false},"author":16,"featured_media":2192,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[242,46],"tags":[36],"class_list":["post-3863","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-english","category-start-ups","tag-ico"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>The \u2018short\u2019 ICO tutorial - Futurum Technology<\/title>\n<meta name=\"description\" content=\"An ICO (Initial Coin Offering) is a blockchain-based crowdfunding method where startups issue digital tokens to investors to raise capital.\" \/>\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.futurum.tech\/blog\/index.php\/2018\/09\/12\/ico\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"The \u2018short\u2019 ICO tutorial - Futurum Technology\" \/>\n<meta property=\"og:description\" content=\"An ICO (Initial Coin Offering) is a blockchain-based crowdfunding method where startups issue digital tokens to investors to raise capital.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.futurum.tech\/blog\/index.php\/2018\/09\/12\/ico\/\" \/>\n<meta property=\"og:site_name\" content=\"Futurum Technology\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/futurm.tech\/\" \/>\n<meta property=\"article:published_time\" content=\"2018-09-12T11:04:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-02-03T11:14:46+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.futurum.tech\/blog\/wp-content\/uploads\/2024\/07\/thisisengineering-ZPeXrWxOjRQ-unsplash-1-scaled.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"2560\" \/>\n\t<meta property=\"og:image:height\" content=\"1708\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Futurum Technology Team\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@FuturumTech\" \/>\n<meta name=\"twitter:site\" content=\"@FuturumTech\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Futurum Technology Team\" \/>\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:\/\/www.futurum.tech\/blog\/index.php\/2018\/09\/12\/ico\/\",\"url\":\"https:\/\/www.futurum.tech\/blog\/index.php\/2018\/09\/12\/ico\/\",\"name\":\"The \u2018short\u2019 ICO tutorial - Futurum Technology\",\"isPartOf\":{\"@id\":\"https:\/\/www.futurum.tech\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.futurum.tech\/blog\/index.php\/2018\/09\/12\/ico\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.futurum.tech\/blog\/index.php\/2018\/09\/12\/ico\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.futurum.tech\/blog\/wp-content\/uploads\/2024\/07\/thisisengineering-ZPeXrWxOjRQ-unsplash-1-scaled.jpg\",\"datePublished\":\"2018-09-12T11:04:00+00:00\",\"dateModified\":\"2026-02-03T11:14:46+00:00\",\"author\":{\"@id\":\"https:\/\/www.futurum.tech\/blog\/#\/schema\/person\/ed95ddabb8f6f1a57f431b669ca5f9cb\"},\"description\":\"An ICO (Initial Coin Offering) is a blockchain-based crowdfunding method where startups issue digital tokens to investors to raise capital.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.futurum.tech\/blog\/index.php\/2018\/09\/12\/ico\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.futurum.tech\/blog\/index.php\/2018\/09\/12\/ico\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.futurum.tech\/blog\/index.php\/2018\/09\/12\/ico\/#primaryimage\",\"url\":\"https:\/\/www.futurum.tech\/blog\/wp-content\/uploads\/2024\/07\/thisisengineering-ZPeXrWxOjRQ-unsplash-1-scaled.jpg\",\"contentUrl\":\"https:\/\/www.futurum.tech\/blog\/wp-content\/uploads\/2024\/07\/thisisengineering-ZPeXrWxOjRQ-unsplash-1-scaled.jpg\",\"width\":2560,\"height\":1708},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.futurum.tech\/blog\/index.php\/2018\/09\/12\/ico\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.futurum.tech\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"The \u2018short\u2019 ICO tutorial\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.futurum.tech\/blog\/#website\",\"url\":\"https:\/\/www.futurum.tech\/blog\/\",\"name\":\"Futurum Technology\",\"description\":\"Blog\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.futurum.tech\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.futurum.tech\/blog\/#\/schema\/person\/ed95ddabb8f6f1a57f431b669ca5f9cb\",\"name\":\"Futurum Technology Team\",\"sameAs\":[\"https:\/\/futurum.tech\/blog\/\"],\"url\":\"https:\/\/www.futurum.tech\/blog\/index.php\/author\/futurum-technology-team\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"The \u2018short\u2019 ICO tutorial - Futurum Technology","description":"An ICO (Initial Coin Offering) is a blockchain-based crowdfunding method where startups issue digital tokens to investors to raise capital.","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.futurum.tech\/blog\/index.php\/2018\/09\/12\/ico\/","og_locale":"en_US","og_type":"article","og_title":"The \u2018short\u2019 ICO tutorial - Futurum Technology","og_description":"An ICO (Initial Coin Offering) is a blockchain-based crowdfunding method where startups issue digital tokens to investors to raise capital.","og_url":"https:\/\/www.futurum.tech\/blog\/index.php\/2018\/09\/12\/ico\/","og_site_name":"Futurum Technology","article_publisher":"https:\/\/www.facebook.com\/futurm.tech\/","article_published_time":"2018-09-12T11:04:00+00:00","article_modified_time":"2026-02-03T11:14:46+00:00","og_image":[{"width":2560,"height":1708,"url":"https:\/\/www.futurum.tech\/blog\/wp-content\/uploads\/2024\/07\/thisisengineering-ZPeXrWxOjRQ-unsplash-1-scaled.jpg","type":"image\/jpeg"}],"author":"Futurum Technology Team","twitter_card":"summary_large_image","twitter_creator":"@FuturumTech","twitter_site":"@FuturumTech","twitter_misc":{"Written by":"Futurum Technology Team","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.futurum.tech\/blog\/index.php\/2018\/09\/12\/ico\/","url":"https:\/\/www.futurum.tech\/blog\/index.php\/2018\/09\/12\/ico\/","name":"The \u2018short\u2019 ICO tutorial - Futurum Technology","isPartOf":{"@id":"https:\/\/www.futurum.tech\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.futurum.tech\/blog\/index.php\/2018\/09\/12\/ico\/#primaryimage"},"image":{"@id":"https:\/\/www.futurum.tech\/blog\/index.php\/2018\/09\/12\/ico\/#primaryimage"},"thumbnailUrl":"https:\/\/www.futurum.tech\/blog\/wp-content\/uploads\/2024\/07\/thisisengineering-ZPeXrWxOjRQ-unsplash-1-scaled.jpg","datePublished":"2018-09-12T11:04:00+00:00","dateModified":"2026-02-03T11:14:46+00:00","author":{"@id":"https:\/\/www.futurum.tech\/blog\/#\/schema\/person\/ed95ddabb8f6f1a57f431b669ca5f9cb"},"description":"An ICO (Initial Coin Offering) is a blockchain-based crowdfunding method where startups issue digital tokens to investors to raise capital.","breadcrumb":{"@id":"https:\/\/www.futurum.tech\/blog\/index.php\/2018\/09\/12\/ico\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.futurum.tech\/blog\/index.php\/2018\/09\/12\/ico\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.futurum.tech\/blog\/index.php\/2018\/09\/12\/ico\/#primaryimage","url":"https:\/\/www.futurum.tech\/blog\/wp-content\/uploads\/2024\/07\/thisisengineering-ZPeXrWxOjRQ-unsplash-1-scaled.jpg","contentUrl":"https:\/\/www.futurum.tech\/blog\/wp-content\/uploads\/2024\/07\/thisisengineering-ZPeXrWxOjRQ-unsplash-1-scaled.jpg","width":2560,"height":1708},{"@type":"BreadcrumbList","@id":"https:\/\/www.futurum.tech\/blog\/index.php\/2018\/09\/12\/ico\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.futurum.tech\/blog\/"},{"@type":"ListItem","position":2,"name":"The \u2018short\u2019 ICO tutorial"}]},{"@type":"WebSite","@id":"https:\/\/www.futurum.tech\/blog\/#website","url":"https:\/\/www.futurum.tech\/blog\/","name":"Futurum Technology","description":"Blog","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.futurum.tech\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.futurum.tech\/blog\/#\/schema\/person\/ed95ddabb8f6f1a57f431b669ca5f9cb","name":"Futurum Technology Team","sameAs":["https:\/\/futurum.tech\/blog\/"],"url":"https:\/\/www.futurum.tech\/blog\/index.php\/author\/futurum-technology-team\/"}]}},"_links":{"self":[{"href":"https:\/\/www.futurum.tech\/blog\/index.php\/wp-json\/wp\/v2\/posts\/3863","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.futurum.tech\/blog\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.futurum.tech\/blog\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.futurum.tech\/blog\/index.php\/wp-json\/wp\/v2\/users\/16"}],"replies":[{"embeddable":true,"href":"https:\/\/www.futurum.tech\/blog\/index.php\/wp-json\/wp\/v2\/comments?post=3863"}],"version-history":[{"count":1,"href":"https:\/\/www.futurum.tech\/blog\/index.php\/wp-json\/wp\/v2\/posts\/3863\/revisions"}],"predecessor-version":[{"id":3864,"href":"https:\/\/www.futurum.tech\/blog\/index.php\/wp-json\/wp\/v2\/posts\/3863\/revisions\/3864"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.futurum.tech\/blog\/index.php\/wp-json\/wp\/v2\/media\/2192"}],"wp:attachment":[{"href":"https:\/\/www.futurum.tech\/blog\/index.php\/wp-json\/wp\/v2\/media?parent=3863"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.futurum.tech\/blog\/index.php\/wp-json\/wp\/v2\/categories?post=3863"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.futurum.tech\/blog\/index.php\/wp-json\/wp\/v2\/tags?post=3863"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}