Comment on page
Web2Meaning API
Web2Meaning is a web scraping API that efficiently extracts data from web pages. It integrates an NLP classification model, delivering basic categorization details of the text it scrapes. This capability enables users to perform fundamental content filtering and categorization, optimizing their scraping processes.
- Data extraction: extracts text, images, videos, links, files, metadata, all formatted in JSON;
- Text cleaning: remove HTML tags, and irrelevant content such as ads from the scraped text;
- Renders JavaScript: retrieve data from web pages that dynamically load and render content through JavaScript;
- Entities extraction: identifies and extracts key entities from text(products, technologies, brands, etc.);
- Text classification: classifies a page’s textual content into popular categories, enhancing the data filtering and categorization process;
- Domain classification: categorize a website’s main page based on its overarching topic;
- Article determination: assesses if a specific page meets the criteria to be considered an article;
- Hyperlinks extraction: gathers hyperlinks from the page;
Note that the classification model provides basic information to maintain a streamlined performance of the scraping tool. Aiming for simplicity prevents the API from becoming overly complex, which could hinder its efficiency.
For users seeking advanced NLP features—including comprehensive content filtering and categorization, extensive information extraction, or converting text to tables—we recommend exploring the specialized core NLP solutions offered by Knowledgator.
Get a hands-on experience with our tools in the AI Playground, discovering text-mining capabilities with NLP models.
To start using Web2Meaning you need to generate your API key and use it in your API requests. For guidance on this process, please refer to our authentication guide.
If you already have one, ensure you're subscribed to Web2Meaning API. To do so, head over to our page on Rapid API, select the desired API, and hit the "subscribe" button. Pick a plan that resonates with your requirements (we offer a free trial).
With your API key in hand, you are now allowed to make your first request to Web2Meaning. Let's delve into an example of an API request and highlight key aspects to consider.
curl
python
node.js
curl -X POST https://web2meaning.p.rapidapi.com/parse \
-H "content-type: application/json" \
-H "X-RapidAPI-Key: your RapidApi key" \
-H "X-RapidAPI-Host: web2meaning.p.rapidapi.com" \
-d '{
"url": "https://www.technologyreview.com/2023/10/04/1080122/2023-climate-tech-companies-sublime-systems-clean-cement-electrochemistry-climate-technology/",
"params": {
"article": true,
"article category": true,
"clean body": true,
"entities": true,
"html": true,
"images": true,
"videos": true,
"include links": true,
"is corporative": true,
"links": true,
"website topic": true
}$$
}'
import requests
url = "https://web2meaning.p.rapidapi.com/parse"
payload = {
"url": "https://www.technologyreview.com/2023/10/04/1080122/2023-climate-tech-companies-sublime-systems-clean-cement-electrochemistry-climate-technology/",
"params": {
"article": true,
"article category": true,
"clean body": true,
"entities": true,
"html": true,
"images": true,
"videos": true,
"include links": true,
"is corporative": true,
"links": true,
"website topic": true
}
}
headers = {
"content-type": "application/json",
"X-RapidAPI-Key": '''your RapidApi key''',
"X-RapidAPI-Host": "web2meaning.p.rapidapi.com",
}
response = requests.post(url, json=payload, headers=headers)
const axios = require('axios');
const url = "https://web2meaning.p.rapidapi.com/parse";
const payload = {
url: "https://www.technologyreview.com/2023/10/04/1080122/2023-climate-tech-companies-sublime-systems-clean-cement-electrochemistry-climate-technology/",
params: {
"article": true,
"article category": true,
"clean body": true,
"entities": true,
"html": true,
"images": true,
"videos": true,
"include links": true,
"is corporative": true,
"links": true,
"website topic": true
}
};
const headers = {
"content-type": "application/json",
"X-RapidAPI-Key": "your RapidApi key",
"X-RapidAPI-Host": "web2meaning.p.rapidapi.com",
};
axios.post(url, payload, { headers })
.then(response => {
console.log(response.data);
})
.catch(error => {
console.error(error);
});
headers = {
"content-type": "application/json",
"X-RapidAPI-Key": "PUT_API_KEY_HERE",
"X-RapidAPI-Host": "web2meaning.p.rapidapi.com",
}
For request authorization, place your generated API key within the
X-RapidAPI-Key
header.{ // request parameters
"url": "https://www.technologyreview.com/2023/10/04/1080122/2023-climate-tech-companies-sublime-systems-clean-cement-electrochemistry-climate-technology/",
"params": {
"article": true,
"article category": true,
"clean body": true,
"entities": true,
"html": true,
"images": true,
"website topic": true,
"videos": true,
"include links": true,
"is corporative": true,
"links": true,
"website topic": true
}$$
}'
- 1.The
url
parameter requires a valid URL link to a web page. If the provided link references a page with restricted access, or if the website owner has denied permission to scrape information from their website, Web2Meaning will return an empty response. - 2.The
params
parameter defines the specific data types to be extracted from the target website. By enabling specific parameters such asarticle category
or you engage the article classification function, resulting in the output including a categorization of the article within the response's appropriate section. To ensure optimal performance, not all parameters are enabled by default. The API reference provides clarity on default settings for each parameter, guiding you to activate only those necessary for your use case. Make sure that you specify the parameter names correctly. Any typos could cause the API to ignore the field and use the default setting instead.
Upon successful authorization and specification of your request, you will receive a structured response with data. This response includes the data extracted based on your configuration in the
params
parameter of your request.
Below, you'll find a sample response, illustratively detailing the data organized within the relevant JSON properties extracted from the parsed web page:{
"article": true,
"article category": "business",
"author": null,
"body": "The firm is using electrochemistry to reinvent one of the world’s dirtiest materials.\nExplore [the 2023 list of 15 Climate Tech Companies to Watch](https://www.technologyreview.com/2023/10/04/1080528/2023-climate-tech-companies-electric-vehicles-batteries-carbon-removal-energy-storage/). The startup’s approach employs electrochemistry to dramatically cut emissions, both by tweaking the chemical reactions involved and by eliminating the need for high temperatures.\nSublime Systems is reinventing how we make cement—a material that’s a real climate nightmare, accounting for roughly 8% of global greenhouse-gas emissions.\nWhen cement is mixed with water, sand, and gravel, it hardens into concrete—the second-most-used substance on the planet (after water).\nIn the conventional cement-making process, emissions mostly come from two sources. First, ground-up materials such as limestone and clay are heated in kilns to over 1,400 °C (2,500 °F) to prime the mixture. Reaching those temperatures typically requires burning coal or other fossil fuels, which produces carbon dioxide and other greenhouse gasses.\nThe chemical process in the kiln also requires peeling carbon dioxide away from the starting minerals to leave the reactive cement powder that builders use. That carbon dioxide is usually difficult to capture before it’s emitted into the atmosphere.\nSublime Systems has invented a process that tackles both of those issues.\nFirst, the company uses electrochemical reactions rather than high temperatures to make its cement, avoiding the need to burn fossil fuels. Fueling the reactions with electricity means that Sublime’s plants can eventually be powered by energy sources like solar and wind instead of by burning coal or natural gas. The process can also use different starting materials that don’t necessarily emit carbon dioxide when they’re transformed into cement ingredients.\nIf Sublime is able to run its process at the massive scales required to be relevant in the industry, the startup’s technology would reduce emissions associated with cement by 90%.\nAnd while several paths to decarbonizing the sector are under development today, Sublime’s approach could eventually make cement that can compete with conventional methods on cost, making a convincing economic case for adoption.\nSome other climate-focused cement startups make material that’s chemically identical to existing cement. But while Sublime’s material acts just like traditional cement when it hardens, it takes a different path to get there.\nThat could be a problem in a conservative industry like construction, where new building materials and technologies need to clear a high bar before they are adopted. Sublime will have to use different standards to test its material, which could make some builders hesitant to make the switch.\nAdditionally, scaling electrochemical processes up from the lab can present engineering challenges. Reactions may not work the same way in bigger tanks, and new equipment will be needed when going from hundreds to thousands to millions of tons of capacity. Scaling issues could delay the company’s aggressive timeline. Making material at larger scales is also likely to require hundreds of millions of dollars in capital funding, which the company will need to raise quickly as it builds factories.\nTechnology plays a crucial role in addressing one of society's most daunting threats.\nSublime has been steadily expanding its operation, from small reactions in an MIT lab to a [pilot facility](https://www.technologyreview.com/2023/07/06/1075937/inside-a-high-tech-cement-laboratory/) that can produce about 100 tons of cement each year. The company’s next step is to build a larger demonstration facility with the capacity to produce over 10,000 tons of cement each year, which it plans to bring online by 2026.\nFinally, a full-scale commercial plant, which would produce a million tons of material each year, should be operational by 2028, the firm says.\nOver the next five years, Sublime will want to show it is making progress on these demonstration and commercial facilities. The company will need to raise additional funding and could announce new commercial partnerships to make the sites a reality.\nIn the meantime, the startup plans to complete real-world tests of its materials, including building small installations, like sidewalks or patios, with concrete made from its cement. These demonstrations would prove that Sublime is able to make large amounts of the cement, and that its products will behave as builders might expect—hardening into a resilient, tough material that can scaffold the world around us.\nExplore [the 2023 list of 15 Climate Tech Companies to Watch](https://www.technologyreview.com/2023/10/04/1080528/2023-climate-tech-companies-electric-vehicles-batteries-carbon-removal-energy-storage/).\nPlastic is cheap to make and shockingly profitable. It’s everywhere. And we’re all paying the price.\nThe US Department of Energy just committed a $400 million loan to battery maker Eos.\nThe startup's AC units suck moisture out of the air for more efficient cooling.\nDiscover special offers, top stories,\nupcoming events, and more.\nThank you for submitting your email!\nIt looks like something went wrong.\nWe’re having trouble saving your preferences.\nTry refreshing this page and updating them one\nmore time. If you continue to get this message,\nreach out to us at\[email protected] with a list of newsletters you’d like to receive.\n© 2023 MIT Technology Review",
"company website page": "Products&Services",
"content-type": "text/html; charset=utf-8",
"description": "The firm is using electrochemistry to reinvent one of the world’s dirtiest materials.",
"domain": "www.technologyreview.com",
"entities": [
"Sublime’s",
"Climate Tech Companies",
"Watch](https://www.technologyreview.com/2023/10/04/1080528/2023-climate-tech-companies-electric-vehicles-batteries-carbon-removal-energy-storage/)",
"don’t",
"MIT"
],
"favicon": "https://www.technologyreview.comstatic/media/favicon.1cfcdb44759a0f93ddf5feb5405dd4cc.ico",
"full text": "2023 Climate Tech Companies to Watch: Sublime Systems and its clean cement | MIT Technology Review The firm is using electrochemistry to reinvent one of the world’s dirtiest materials. The firm is using electrochemistry to reinvent one of the world’s dirtiest materials.\nExplore [the 2023 list of 15 Climate Tech Companies to Watch](https://www.technologyreview.com/2023/10/04/1080528/2023-climate-tech-companies-electric-vehicles-batteries-carbon-removal-energy-storage/).\nSublime Systems has invented a new way to make cement. The startup’s approach employs electrochemistry to dramatically cut emissions, both by tweaking the chemical reactions involved and by eliminating the need for high temperatures.\nSublime Systems is reinventing how we make cement—a material that’s a real climate nightmare, accounting for roughly 8% of global greenhouse-gas emissions.\nWhen cement is mixed with water, sand, and gravel, it hardens into concrete—the second-most-used substance on the planet (after water).\nIn the conventional cement-making process, emissions mostly come from two sources. First, ground-up materials such as limestone and clay are heated in kilns to over 1,400 °C (2,500 °F) to prime the mixture. Reaching those temperatures typically requires burning coal or other fossil fuels, which produces carbon dioxide and other greenhouse gasses.\nThe chemical process in the kiln also requires peeling carbon dioxide away from the starting minerals to leave the reactive cement powder that builders use. That carbon dioxide is usually difficult to capture before it’s emitted into the atmosphere.\nSublime Systems has invented a process that tackles both of those issues.\nFirst, the company uses electrochemical reactions rather than high temperatures to make its cement, avoiding the need to burn fossil fuels. Fueling the reactions with electricity means that Sublime’s plants can eventually be powered by energy sources like solar and wind instead of by burning coal or natural gas. The process can also use different starting materials that don’t necessarily emit carbon dioxide when they’re transformed into cement ingredients.\nIf Sublime is able to run its process at the massive scales required to be relevant in the industry, the startup’s technology would reduce emissions associated with cement by 90%.\nAnd while several paths to decarbonizing the sector are under development today, Sublime’s approach could eventually make cement that can compete with conventional methods on cost, making a convincing economic case for adoption.\nSome other climate-focused cement startups make material that’s chemically identical to existing cement. But while Sublime’s material acts just like traditional cement when it hardens, it takes a different path to get there.\nThat could be a problem in a conservative industry like construction, where new building materials and technologies need to clear a high bar before they are adopted. Sublime will have to use different standards to test its material, which could make some builders hesitant to make the switch.\nAdditionally, scaling electrochemical processes up from the lab can present engineering challenges. Reactions may not work the same way in bigger tanks, and new equipment will be needed when going from hundreds to thousands to millions of tons of capacity. Scaling issues could delay the company’s aggressive timeline. Making material at larger scales is also likely to require hundreds of millions of dollars in capital funding, which the company will need to raise quickly as it builds factories.\nTechnology plays a crucial role in addressing one of society's most daunting threats.\nSublime has been steadily expanding its operation, from small reactions in an MIT lab to a [pilot facility](https://www.technologyreview.com/2023/07/06/1075937/inside-a-high-tech-cement-laboratory/) that can produce about 100 tons of cement each year. The company’s next step is to build a larger demonstration facility with the capacity to produce over 10,000 tons of cement each year, which it plans to bring online by 2026.\nFinally, a full-scale commercial plant, which would produce a million tons of material each year, should be operational by 2028, the firm says.\nOver the next five years, Sublime will want to show it is making progress on these demonstration and commercial facilities. The company will need to raise additional funding and could announce new commercial partnerships to make the sites a reality.\nIn the meantime, the startup plans to complete real-world tests of its materials, including building small installations, like sidewalks or patios, with concrete made from its cement. These demonstrations would prove that Sublime is able to make large amounts of the cement, and that its products will behave as builders might expect—hardening into a resilient, tough material that can scaffold the world around us.\nExplore [the 2023 list of 15 Climate Tech Companies to Watch](https://www.technologyreview.com/2023/10/04/1080528/2023-climate-tech-companies-electric-vehicles-batteries-carbon-removal-energy-storage/).\nPlastic is cheap to make and shockingly profitable. It’s everywhere. And we’re all paying the price.\nThe US Department of Energy just committed a $400 million loan to battery maker Eos.\nThe startup's AC units suck moisture out of the air for more efficient cooling.\nDiscover special offers, top stories,\nupcoming events, and more.\nThank you for submitting your email!\nIt looks like something went wrong.\nWe’re having trouble saving your preferences.\nTry refreshing this page and updating them one\nmore time. If you continue to get this message,\nreach out to us at\[email protected] with a list of newsletters you’d like to receive.\n© 2023 MIT Technology Review",
"html": "<div class=\"contentArticleHeader--vertical__deck--b143719517f33c05a30027cdf7b3ac20\"><p>The firm is using electrochemistry to reinvent one of the world’s dirtiest materials.</p>\n</div><div class=\"contentArticleHeader--vertical__meta--683d8a41ba4ea470d72e5416d7da6884\"><div class=\"byline__wrapper--e804dd36253abad2e1f9f807e4dacadf byline__storyPage--0ea6f2bef44ac9c70f6581d3d7f21b41\"><span class=\"byline__by--47498879ac1d8579baae61095c0f1cec\" aria-hidden=\"true\">By </span><ul class=\"byline__list--f83ef95fd74e646cbad4e31d4ca13c93\" aria-label=\"Authors\"><li class=\"byline__author--5117418e1719e65608f7c75fb5214000 byline__storyPage--0ea6f2bef44ac9c70f6581d3d7f21b41\"><a theme=\"\" href=\"https://www.technologyreview.com/author/casey-crownhart/\" class=\"byline__name--0f13a06758d50e60b13981eba38e67b0 byline__storyPage--0ea6f2bef44ac9c70f6581d3d7f21b41\">Casey Crownhart<span class=\"screen-reader-text\">archive page</span></a></li></ul></div><div class=\"contentArticleHeader--vertical__publishDate--76f371f809eb187cfc82b12ab3a3c6fd\">October 4, 2023</div></div></div><div class=\"contentArticleHeader--vertical__image--d85a99dde7192a90ee2fa189aab44b08\"><span class=\"image__wrapper--373a87c0cefdc42b3a8bd26457571412\"><div class=\"image__smartCrop--7cdf585afe2c24f88c35ba955f4bde5d\" style=\"padding-top:133.33%\"><img src=\"https://wp.technologyreview.com/wp-content/uploads/2023/10/Sublime_Panorama-1.jpg\" srcSet=\"https://wp.technologyreview.com/wp-content/uploads/2023/10/Sublime_Panorama-1.jpg?fit=944,1262 944w,https://wp.technologyreview.com/wp-content/uploads/2023/10/Sublime_Panorama-1.jpg?fit=472,631 472w,https://wp.technologyreview.com/wp-content/uploads/2023/10/Sublime_Panorama-1.jpg?fit=1456,1946 1456w,https://wp.technologyreview.com/wp-content/uploads/2023/10/Sublime_Panorama-1.jpg?fit=728,973 728w,https://wp.technologyreview.com/wp-content/uploads/2023/10/Sublime_Panorama-1.jpg?fit=556,746 556w,https://wp.technologyreview.com/wp-content/uploads/2023/10/Sublime_Panorama-1.jpg?fit=278,373 278w,https://wp.technologyreview.com/wp-content/uploads/2023/10/Sublime_Panorama-1.jpg?fit=736,984 736w,https://wp.technologyreview.com/wp-content/uploads/2023/10/Sublime_Panorama-1.jpg?fit=368,492 368w,https://wp.technologyreview.com/wp-content/uploads/2023/10/Sublime_Panorama-1.jpg?fit=756,1012 756w,https://wp.technologyreview.com/wp-content/uploads/2023/10/Sublime_Panorama-1.jpg?fit=378,506 378w,https://wp.technologyreview.com/wp-content/uploads/2023/10/Sublime_Panorama-1.jpg?fit=1504,1958 1504w,https://wp.technologyreview.com/wp-content/uploads/2023/10/Sublime_Panorama-1.jpg?fit=752,979 752w\" sizes=\"(max-width: 32rem) 472px,(max-width: 48rem) 728px,(max-width: 64rem) 278px,(max-width: 80rem) 368px,(max-width: 90rem) 378px,752px\" style=\"object-position:50% 50%\" alt=\"a worker climbs up to check the system\" class=\"image__img--e1a73f503bf0f4a3d2504e1d64ea29cb\"/></div></span><figcaption class=\"image__meta--16eb0f8dde685315ba1d77ae67c89391\"><span class=\"image__credit--f62c527bbdd8413eb6b6fa545d044c69\">Sublime Systems</span></figcaption></div></div></div><div class=\"contentArticleHeader__dots--f18af8845502d6a24e12e1c5a6d4683d contentArticleHeader--vertical__firstDots--576fdd1148592b4254a11822b9e9bea4 contentArticleHeader__firstDots--3428101a4357a474cb46bd52c0f473eb\"><div class=\"dotGrid__dots--cf24d0e6aff1f112b1e5d9065c4a71c1 dotGrid__blue--acac301fee94f7da075099d6526b2d56\"></div></div></header></div><div class=\"columnArea--fullStory__wrapper--ccee5f31e66b5948da2a7c721aad125d columnArea--feed__wrapper--9fde11fccdb1faf9ccccc659b597b99d columnArea__wrapper columnArea--fullStory__isStandard--6ae6bc9cb34f786f51175e8f697bd543\"><div class=\"columnArea--fullStory__main--69d9dff03dc838997ac3b349fb620185 columnArea--fullStory__isVertical--1cbf9bdd49cb6c67f52204f2d51c6759\"><div class=\"contentArea__wrapper--38c966634c2da29792cafb832d80f475 content-area\"><div class=\"contentBody__wrapper--d9d8f9bb44c188246f70afcdc827cc4f\"><div class=\"contentBody__overlay--d693d7b10ac848641212320075aaf64a\"></div><div class=\"contentBody__content--42a60b56e419a26d9c3638a9dab52f55\" id=\"content--body\"><div><div class=\"\"><div><div class=\"gutenbergContent__content--109b03a769a11e8ae3acbab352a64269 html_0\"> <p><em><strong>Explore <a href=\"https://www.technologyreview.com/2023/10/04/1080528/2023-climate-tech-companies-electric-vehicles-batteries-carbon-removal-energy-storage/\" target=\"_blank\">the 2023 list of 15 Climate Tech Companies to Watch</a>.</strong></em></p> <blockquote class=\"wp-block-quote\"> <p class=\"has-text-align-left\"><strong>Sublime Systems has invented a new way to make cement. The startup’s approach employs electrochemistry to dramatically cut emissions, both by tweaking the chemical reactions involved and by eliminating the need for high temperatures.</strong></p> </blockquote> <h3 class=\"wp-block-heading\">Intro</h3> <p>Sublime Systems is reinventing how we make cement—a material that’s a real climate nightmare, accounting for roughly 8% of global greenhouse-gas emissions. </p> </div></div><div><div class=\"gutenbergContent__content--109b03a769a11e8ae3acbab352a64269 html_2\"> <p>When cement is mixed with water, sand, and gravel, it hardens into concrete—the second-most-used substance on the planet (after water). </p> <p>In the conventional cement-making process, emissions mostly come from two sources. First, ground-up materials such as limestone and clay are heated in kilns to over 1,400 °C (2,500 °F) to prime the mixture. Reaching those temperatures typically requires burning coal or other fossil fuels, which produces carbon dioxide and other greenhouse gasses.</p> <div id=\"piano__post_body-desktop-1\" class=\"piano__post_body\"></div>\n <p>The chemical process in the kiln also requires peeling carbon dioxide away from the starting minerals to leave the reactive cement powder that builders use. That carbon dioxide is usually difficult to capture before it’s emitted into the atmosphere. </p> <p>Sublime Systems has invented a process that tackles both of those issues.</p> <div id=\"piano__post_body-mobile-1\" class=\"piano__post_body\"></div>\n <p>First, the company uses electrochemical reactions rather than high temperatures to make its cement, avoiding the need to burn fossil fuels. Fueling the reactions with electricity means that Sublime’s plants can eventually be powered by energy sources like solar and wind instead of by burning coal or natural gas. The process can also use different starting materials that don’t necessarily emit carbon dioxide when they’re transformed into cement ingredients. </p> <hr class=\"wp-block-separator has-alpha-channel-opacity\" /> <h2 class=\"wp-block-heading\"><strong>Key indicators</strong></h2> <ul> <li><strong>Industry: </strong>Cement </li> <li><strong>Founded: </strong>2020</li> <li><strong>Headquarters: </strong>Somerville, MA, USA</li> <li><strong>Notable fact: </strong>The first reactions that cofounder Leah Ellis ran in a lab at MIT made only about a die-sized amount of material.</li> </ul> <hr class=\"wp-block-separator has-alpha-channel-opacity\" /> <h3 class=\"wp-block-heading\"><strong>Potential for impact</strong></h3> <p>If Sublime is able to run its process at the massive scales required to be relevant in the industry, the startup’s technology would reduce emissions associated with cement by 90%.</p> <p>And while several paths to decarbonizing the sector are under development today, Sublime’s approach could eventually make cement that can compete with conventional methods on cost, making a convincing economic case for adoption. </p> </div></div><aside style=\"background-color:#101F40\" class=\"seriesPromo__wrap--ef66c94cf04f56bc5c35c7a22ece9ac9\"><div class=\"seriesPromo__container--22624cb25431ce44d4cbb75591d57263 seriesPromo__header--41e87fdfa67ac91610549d47d88c3b61\"><div class=\"seriesPromo__eyebrow\"><div class=\"\">2023</div></div><h3 class=\"seriesPromo__heading\"><div class=\"\">15 Climate Tech Companies to Watch</div></h3></div></aside><div><div class=\"gutenbergContent__content--109b03a769a11e8ae3acbab352a64269 html_4\"> <h3 class=\"wp-block-heading\"><strong>Caveats</strong></h3> <p>Some other climate-focused cement startups make material that’s chemically identical to existing cement. But while Sublime’s material acts just like traditional cement when it hardens, it takes a different path to get there. </p> </div></div><div><div class=\"gutenbergContent__content--109b03a769a11e8ae3acbab352a64269 html_6\"> <p>That could be a problem in a conservative industry like construction, where new building materials and technologies need to clear a high bar before they are adopted. Sublime will have to use different standards to test its material, which could make some builders hesitant to make the switch. </p> <p>Additionally, scaling electrochemical processes up from the lab can present engineering challenges. Reactions may not work the same way in bigger tanks, and new equipment will be needed when going from hundreds to thousands to millions of tons of capacity. Scaling issues could delay the company’s aggressive timeline. Making material at larger scales is also likely to require hundreds of millions of dollars in capital funding, which the company will need to raise quickly as it builds factories. </p> </div></div><aside aria-label=\"Related Story - Introducing MIT Technology Review’s 2023 list of 15 Climate Tech Companies to Watch\" class=\"related__wrap alignleft\"><h2 class=\"related__header\">Related Story</h2><div class=\"related__content-wrap\"><a tabindex=\"-1\" aria-hidden=\"true\" theme=\"\" href=\"https://www.technologyreview.com/2023/10/04/1080138/introducing-2023-climate-tech-companies-list/\" class=\"related__featuredImg--link\"><span class=\"image__wrapper--373a87c0cefdc42b3a8bd26457571412\"><span class=\" lazy-load-image-background opacity\" style=\"color:transparent;display:inline-block\"><span class=\"image__img--e1a73f503bf0f4a3d2504e1d64ea29cb imgLazyLoaded\" style=\"display:inline-block\"></span></span></span><figcaption class=\"image__meta--16eb0f8dde685315ba1d77ae67c89391\"></figcaption></a><div class=\"related__meta-wrap\"><a theme=\"\" href=\"https://www.technologyreview.com/2023/10/04/1080138/introducing-2023-climate-tech-companies-list/\" class=\"related__link\"><div class=\"\">Introducing MIT Technology Review’s 2023 list of 15 Climate Tech Companies to Watch</div></a><div class=\"related__deck\"><p>Technology plays a crucial role in addressing one of society's most daunting threats.</p>\n</div></div></div></aside><div><div class=\"gutenbergContent__content--109b03a769a11e8ae3acbab352a64269 html_8\"><h3 class=\"wp-block-heading\"><strong>When</strong></h3> <p>Sublime has been steadily expanding its operation, from small reactions in an MIT lab to a <a href=\"https://www.technologyreview.com/2023/07/06/1075937/inside-a-high-tech-cement-laboratory/\">pilot facility</a> that can produce about 100 tons of cement each year. The company’s next step is to build a larger demonstration facility with the capacity to produce over 10,000 tons of cement each year, which it plans to bring online by 2026. </p> <p>Finally, a full-scale commercial plant, which would produce a million tons of material each year, should be operational by 2028, the firm says.</p> <div id=\"piano__post_body-mobile-2\" class=\"piano__post_body\"></div>\n<div id=\"piano__post_body-desktop-2\" class=\"piano__post_body\"></div>\n <h3 class=\"wp-block-heading\"><strong>Next steps </strong></h3> <p>Over the next five years, Sublime will want to show it is making progress on these demonstration and commercial facilities. The company will need to raise additional funding and could announce new commercial partnerships to make the sites a reality.</p> <p>In the meantime, the startup plans to complete real-world tests of its materials, including building small installations, like sidewalks or patios, with concrete made from its cement. These demonstrations would prove that Sublime is able to make large amounts of the cement, and that its products will behave as builders might expect—hardening into a resilient, tough material that can scaffold the world around us.</p> <p><em><strong>Explore <a href=\"https://www.technologyreview.com/2023/10/04/1080528/2023-climate-tech-companies-electric-vehicles-batteries-carbon-removal-energy-storage/\" target=\"_blank\">the 2023 list of 15 Climate Tech Companies to Watch</a>.</strong></em><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1091.84 1091.84\" class=\"monogramTLogo\" aria-hidden=\"true\"><polygon fill=\"#6d6e71\" points=\"363.95 0 363.95 1091.84 727.89 1091.84 727.89 363.95 363.95 0\"></polygon><polygon fill=\"#939598\" points=\"363.95 0 728.24 365.18 1091.84 364.13 1091.84 0 363.95 0\"></polygon><polygon fill=\"#414042\" points=\"0 0 0 0.03 0 363.95 363.95 363.95 363.95 0 0 0\"></polygon></svg> </p></div></div></div><div class=\"sliderAd__wrapper--6839b3ffc8a509af81d783ae19d8be5f\"><button class=\"sliderAd__closeButton--9cf649469b35d26430dc3c376c6d6c4e\" type=\"button\"><span class=\"sliderAd__closeText--436175f3f4428f747745983ccb31b44d\">hide</span><span class=\"sliderAd__closeIcon--04e565ebee7cadbb069dc7f0d634315c\"><svg width=\"26\" height=\"26\" viewBox=\"0 0 26 26\"><g fill=\"none\" fill-rule=\"evenodd\" stroke=\"#FFF\" stroke-linecap=\"square\" stroke-width=\"4\"><path d=\"M.526.526l19.41 19.41M19.474.526L.064 19.936\" transform=\"translate(3 3)\"></path></g></svg></span></button><div><div data-loaded=\"false\" class=\"adUnit adUnit__wrapper--7a6d3a3802980dcd11d62d7be0607f4c\"><div class=\"site-slider adunitContainer\"><div class=\"adBox\" id=\"site-slider-1\"></div></div></div></div></div></div></div></div><footer class=\"contentFooter__wrapper--668cb9dffd30ed781105d3c21d83e9c4\"><div class=\"contentFooter__grid--3b42dbe94a07f6b3b9fd0204a124dfa9\"><div class=\"contentFooter__byline--d4e46ead55f727147e762c04276efa60\"><h3>by<!-- --> <a theme=\"\" href=\"https://www.technologyreview.com/author/casey-crownhart/\" class=\"contentFooter__author--216e10ebd5482c3e1552e692536201c9\"><span>Casey Crownhart</span></a></h3></div><div class=\"contentFooter__social--5ec501aa73c97f7f7a7881f5fd2fef16\"><div class=\"socialList__wrapper--b4e20d26ee8c3c7642e36a25a83ea237\"><div class=\"socialList--iconsOnly__shareWrapper--96cd74ec8a0a32ac206424725ed07261\"><h3 class=\"socialList--iconsOnly__title--8d283f76b1225a6e0601d667828dba48\">Share</h3><ul class=\"socialList--iconsOnly__list--fc6d586c9f1afc567696c39bf12766df\"><li class=\"darkRound__wrapper--453fa45523fcfa78083adec129fedb01 socialItem__wrapper--5a7f64dfede1486d0bef8864a35eb2cf socialItem__linkedin--30990cdd1559f583b59fb071a3baab37\"><a href=\"https://www.linkedin.com/shareArticle/?url=https%3A%2F%2Fwww.technologyreview.com%2F2023%2F10%2F04%2F1080122%2F2023-climate-tech-companies-sublime-systems-clean-cement-electrochemistry-climate-technology%2F&title=2023%20Climate%20Tech%20Companies%20to%20Watch%3A%20Sublime%20Systems%20and%20its%20clean%20cement&summary=Explore%C2%A0the%202023%20list%20of%2015%20Climate%20Tech%20Companies%20to%20Watch.%20Sublime%20Systems%20has%20invented%20a%20new%20way%20to%20make%20cement.%20The%20startup%E2%80%99s%20approach%20employs%20electrochemistry%20to%20dramatically%20cut%20emissions%2C%20both%20by%20tweaking%20the%20chemical%20reactions%20involved%20and%20by%20eliminating%20the%20need%20for%20high%20temperatures.%20Intro%20Sublime%20Systems%20is%20reinventing%20how%20we%20make%20cement%E2%80%94a%20material%20that%E2%80%99s%E2%80%A6\" class=\"socialItem__anchor--f2d7cab71ed8f8aed2789d2f48f79d1a mittr-share-link\" target=\"_blank\" rel=\"noopener\" data-event-category=\"story-footer-share-button-linkedin\" data-event-action=\"click\" data-event-label=\"https://www.technologyreview.com/2023/10/04/1080122/2023-climate-tech-companies-sublime-systems-clean-cement-electrochemistry-climate-technology/\" aria-labelledby=\"story-footer-linkedin-sr-label\"><span id=\"story-footer-linkedin-sr-label\" class=\"socialItem__screenReaderLabel--668d99165269e94eab90d773e53dc942\">linkedin<!-- -->link opens in a new window</span><div class=\"darkRound__icon--d490902a5780ffe9fff40d382e315880 lightIcon__icon--e62198ccfa245e0db83e2c40c3f34ae3\"><svg viewBox=\"0 0 24 24\" aria-hidden=\"true\" tabindex=\"-1\"><path d=\"M19 0H5a5 5 0 0 0-5 5v14a5 5 0 0 0 5 5h14a5 5 0 0 0 5-5V5a5 5 0 0 0-5-5zM8 19H5V8h3v11zM6.5 6.732c-.966 0-1.75-.79-1.75-1.764s.784-1.764 1.75-1.764 1.75.79 1.75 1.764-.783 1.764-1.75 1.764zM20 19h-3v-5.604c0-3.368-4-3.113-4 0V19h-3V8h3v1.765c1.396-2.586 7-2.777 7 2.476V19z\"></path></svg></div></a></li><li class=\"darkRound__wrapper--453fa45523fcfa78083adec129fedb01 socialItem__wrapper--5a7f64dfede1486d0bef8864a35eb2cf darkRound__twitter--514e9e83357656c6accf5e7c5136491c\"><a href=\"https://twitter.com/intent/tweet/?text=2023%20Climate%20Tech%20Companies%20to%20Watch%3A%20Sublime%20Systems%20and%20its%20clean%20cement&url=https%3A%2F%2Fwww.technologyreview.com%2F2023%2F10%2F04%2F1080122%2F2023-climate-tech-companies-sublime-systems-clean-cement-electrochemistry-climate-technology%2F\" class=\"socialItem__anchor--f2d7cab71ed8f8aed2789d2f48f79d1a mittr-share-link\" target=\"_blank\" rel=\"noopener\" data-event-category=\"story-footer-share-button-twitter\" data-event-action=\"click\" data-event-label=\"https://www.technologyreview.com/2023/10/04/1080122/2023-climate-tech-companies-sublime-systems-clean-cement-electrochemistry-climate-technology/\" aria-labelledby=\"story-footer-twitter-sr-label\"><span id=\"story-footer-twitter-sr-label\" class=\"socialItem__screenReaderLabel--668d99165269e94eab90d773e53dc942\">twitter<!-- -->link opens in a new window</span><div class=\"darkRound__icon--d490902a5780ffe9fff40d382e315880 lightIcon__icon--e62198ccfa245e0db83e2c40c3f34ae3\"><svg viewBox=\"0 0 23 20\" tabindex=\"-1\" aria-hidden=\"true\"><path d=\"M19.8 4.5v.6c0 6-4.6 12.9-12.9 12.9-2.6 0-4.9-.8-6.9-2 .4 0 .7.1 1.1.1 2.1 0 4.1-.7 5.6-1.9-2 0-3.7-1.3-4.2-3.1.2-.1.5-.1.8-.1.4 0 .8-.1 1.2-.2C2.4 10.4.9 8.6.9 6.4v-.1c.6.3 1.3.5 2.1.6-1.2-.8-2-2.2-2-3.8 0-.8.2-1.6.6-2.3 2.2 2.7 5.6 4.5 9.3 4.7-.1-.3-.1-.7-.1-1 0-2.5 2-4.5 4.5-4.5 1.3 0 2.5.5 3.3 1.4 1-.2 2-.6 2.9-1.1-.3 1.1-1.1 1.9-2 2.5.9-.1 1.8-.4 2.6-.7-.7 1-1.4 1.8-2.3 2.4z\"></path></svg></div></a></li><li class=\"darkRound__wrapper--453fa45523fcfa78083adec129fedb01 socialItem__wrapper--5a7f64dfede1486d0bef8864a35eb2cf socialItem__facebook--b19e3e23e4b0834c1064153c2285719d\"><a href=\"https://www.facebook.com/sharer.php/?u=https%3A%2F%2Fwww.technologyreview.com%2F2023%2F10%2F04%2F1080122%2F2023-climate-tech-companies-sublime-systems-clean-cement-electrochemistry-climate-technology%2F\" class=\"socialItem__anchor--f2d7cab71ed8f8aed2789d2f48f79d1a mittr-share-link\" target=\"_blank\" rel=\"noopener\" data-event-category=\"story-footer-share-button-facebook\" data-event-action=\"click\" data-event-label=\"https://www.technologyreview.com/2023/10/04/1080122/2023-climate-tech-companies-sublime-systems-clean-cement-electrochemistry-climate-technology/\" aria-labelledby=\"story-footer-facebook-sr-label\"><span id=\"story-footer-facebook-sr-label\" class=\"socialItem__screenReaderLabel--668d99165269e94eab90d773e53dc942\">facebook<!-- -->link opens in a new window</span><div class=\"darkRound__icon--d490902a5780ffe9fff40d382e315880 lightIcon__icon--e62198ccfa245e0db83e2c40c3f34ae3\"><svg width=\"512\" height=\"512\" viewBox=\"0 0 167.657 167.657\"><path d=\"M83.829.349C37.532.349 0 37.881 0 84.178c0 41.523 30.222 75.911 69.848 82.57v-65.081H49.626v-23.42h20.222V60.978c0-20.037 12.238-30.956 30.115-30.956 8.562 0 15.92.638 18.056.919v20.944l-12.399.006c-9.72 0-11.594 4.618-11.594 11.397v14.947h23.193l-3.025 23.42H94.026v65.653c41.476-5.048 73.631-40.312 73.631-83.154 0-46.273-37.532-83.805-83.828-83.805z\"></path></svg></div></a></li><li class=\"darkRound__wrapper--453fa45523fcfa78083adec129fedb01 socialItem__wrapper--5a7f64dfede1486d0bef8864a35eb2cf socialItem__email--448b0407a83e2509cb16874f5194fad3\"><a href=\"mailto:?subject=2023%20Climate%20Tech%20Companies%20to%20Watch%3A%20Sublime%20Systems%20and%20its%20clean%20cement&body=https%3A%2F%2Fwww.technologyreview.com%2F2023%2F10%2F04%2F1080122%2F2023-climate-tech-companies-sublime-systems-clean-cement-electrochemistry-climate-technology%2F\" class=\"socialItem__anchor--f2d7cab71ed8f8aed2789d2f48f79d1a mittr-share-link\" target=\"_blank\" rel=\"noopener\" data-event-category=\"story-footer-share-button-email\" data-event-action=\"click\" data-event-label=\"https://www.technologyreview.com/2023/10/04/1080122/2023-climate-tech-companies-sublime-systems-clean-cement-electrochemistry-climate-technology/\" aria-labelledby=\"story-footer-email-sr-label\"><span id=\"story-footer-email-sr-label\" class=\"socialItem__screenReaderLabel--668d99165269e94eab90d773e53dc942\">email<!-- -->link opens in a new window</span><div class=\"darkRound__icon--d490902a5780ffe9fff40d382e315880 lightIcon__icon--e62198ccfa245e0db83e2c40c3f34ae3\"><svg viewBox=\"0 0 512 512\" tabindex=\"-1\" aria-hidden=\"true\"><path d=\"M437.332 80H74.668C51.199 80 32 99.198 32 122.667v266.666C32 412.802 51.199 432 74.668 432h362.664C460.801 432 480 412.802 480 389.333V122.667C480 99.198 460.801 80 437.332 80zM432 170.667L256 288 80 170.667V128l176 117.333L432 128v42.667z\"></path></svg></div></a></li></ul></div></div></div></div><div id=\"piano__body-footer\" class=\"insertionPoint__pianoInsertionPoint--c393bec357b2bd8e0ac295f9b2215d7c\"></div></footer></div></div><div class=\"columnArea--fullStory__sidebar--9831d670ee9d600b15634c0dfcacb66a\"><aside aria-label=\"Sidebar\" class=\"sidebar__wrapper--d042148a2733c186827b48587c319028\" style=\"position:sticky;top:100px;height:inherit\"><ul class=\"\"><li class=\"sidebar__widgetWrapper--b19d33d6d04fcd269d0c5015f934be33\"><div data-loaded=\"false\" class=\"adUnit adUnit__wrapper--7a6d3a3802980dcd11d62d7be0607f4c\"><div class=\"site-article-right-rail adunitContainer\"><div class=\"adBox\" id=\"site-article-right-rail-122\"></div></div></div></li><li class=\"sidebar__widgetWrapper--b19d33d6d04fcd269d0c5015f934be33\"><div><div class=\"popular__contentModule--2c0755f027ce0c9c7223419cee70fc0e\"><h3 class=\"heading__base--5362205479c388c1ad1144800990bce5 heading__heading--6852bde1bca74526615c94b5a2c6e311 popular__title--94e0a3e1b8ecba0cac477bf24921d619\"><span>Popular</span></h3><ol class=\"popular__stories--42509ad4f267f226d2f7f4300ecdbc2a\"><li class=\"popular__story--b8dd4e122b6279c9b4e01851d113b48d\"><a theme=\"\" href=\"https://www.technologyreview.com/2023/10/23/1082189/data-poisoning-artists-fight-generative-ai/\" class=\"popular__itemTitle--a309025d706936d7cf80d2d71310f2d8\">This new data poisoning tool lets artists fight back against generative AI</a><span class=\"popular__byline--36dff0fc005b4ae73d4113f44f0a1388\"><a theme=\"\" href=\"https://www.technologyreview.com/author/melissa-heikkila/\" class=\"\">Melissa Heikkilä</a></span></li><li class=\"popular__story--b8dd4e122b6279c9b4e01851d113b48d\"><a theme=\"\" href=\"https://www.technologyreview.com/2023/09/15/1079624/deepmind-inflection-generative-ai-whats-next-mustafa-suleyman/\" class=\"popular__itemTitle--a309025d706936d7cf80d2d71310f2d8\">DeepMind’s cofounder: Generative AI is just a phase. What’s next is interactive AI.</a><span class=\"popular__byline--36dff0fc005b4ae73d4113f44f0a1388\"><a theme=\"\" href=\"https://www.technologyreview.com/author/will-douglas-heaven/\" class=\"\">Will Douglas Heaven</a></span></li><li class=\"popular__story--b8dd4e122b6279c9b4e01851d113b48d\"><a theme=\"\" href=\"https://www.technologyreview.com/2023/09/08/1079220/covid-vaccines-2023-autumn-variants/\" class=\"popular__itemTitle--a309025d706936d7cf80d2d71310f2d8\">What to know about this autumn’s covid vaccines</a><span class=\"popular__byline--36dff0fc005b4ae73d4113f44f0a1388\"><a theme=\"\" href=\"https://www.technologyreview.com/author/cassandra-willyard/\" class=\"\">Cassandra Willyard</a></span></li><li class=\"popular__story--b8dd4e122b6279c9b4e01851d113b48d\"><a theme=\"\" href=\"https://www.technologyreview.com/2023/09/19/1079832/chinese-ecommerce-deepfakes-livestream-influencers-ai/\" class=\"popular__itemTitle--a309025d706936d7cf80d2d71310f2d8\">Deepfakes of Chinese influencers are livestreaming 24/7</a><span class=\"popular__byline--36dff0fc005b4ae73d4113f44f0a1388\"><a theme=\"\" href=\"https://www.technologyreview.com/author/zeyi-yang/\" class=\"\">Zeyi Yang</a></span></li></ol></div></div></li></ul></aside></div></div></div><div class=\"deepDive__wrapper--d2638825fee1e28c52f0275273474257\"><div class=\"deepDive__sectionTitleWrapper--fa8cc53fb9d2dd4384096837740d0404\" style=\"background-color:white\"><h3 class=\"deepDive__sectionTitle--1f0d3d98d79aad3d3041b55b21b9f037\">Deep Dive</h3></div><div class=\"deepDive__postsWrapper--09f4433e29e906dd23c0094dbb3c82f4\" style=\"background:#101F40ff\"><div class=\"deepDive__popularPosts--472e769f542883286c56af28fd98e8d5\"><h3 class=\"deepDive__title--641160e40dbdbed9269a57cfe071fe51\">Climate change and energy</h3><div class=\"deepDive__posts--011ab6743b8cbd613f0e4204a357eaf8\"><div class=\"deepDiveItem__wrapper--1f66829c0b5c2fabb3efe2e26098b6ae\"><div class=\"deepDiveItem__dots--eb67237c6bc6a40f4a22e5d09ba0da2a\"><div class=\"dotGrid__dots--cf24d0e6aff1f112b1e5d9065c4a71c1 dotGrid__blue--acac301fee94f7da075099d6526b2d56\"></div></div><a data-event-category=\"recirculation\" data-event-action=\"deep dive\" data-event-label=\"1\" theme=\"\" href=\"https://www.technologyreview.com/2023/10/12/1081129/plastic-recycling-climate-change-microplastics/\" class=\"\"><div class=\"deepDiveItem__image--9f46930b611650920e4f41bafd09792b\"><span class=\"image__wrapper--373a87c0cefdc42b3a8bd26457571412\"><div class=\"image__smartCrop--7cdf585afe2c24f88c35ba955f4bde5d\" style=\"padding-top:63.89%\"><span class=\" lazy-load-image-background opacity\" style=\"color:transparent;display:inline-block\"><span class=\"image__img--e1a73f503bf0f4a3d2504e1d64ea29cb imgLazyLoaded\" style=\"display:inline-block;object-position:50% 50%\"></span></span></div></span><figcaption class=\"image__meta--16eb0f8dde685315ba1d77ae67c89391\"></figcaption></div><h3 class=\"deepDiveItem__title--3e16a8cfc8e5438393e96fd7793611ad\" data-position=\"1\">Think that your plastic is being recycled? Think again.</h3></a><div class=\"deepDiveItem__description--a66757f9bd3c5b8487eca015f7170785\"><p>Plastic is cheap to make and shockingly profitable. It’s everywhere. And we’re all paying the price.</p>\n</div><div class=\"deepDiveItem__bylineWrapper--4994cf475a1ca86d455869de2a94bf46\"><span class=\"deepDiveItem__by--81a3efc13621a0837a077f98502df2b0\" aria-hidden=\"true\">By </span><ul class=\"deepDiveItem__list--3c982fc29ba3b6b16281ae8e8230f2d7\" aria-label=\"Authors\"><li class=\"deepDiveItem__author--6de04bbddafda5f472b616cf56122389\"><a theme=\"\" href=\"https://www.technologyreview.com/author/douglas-main/\" class=\"\"><span>Douglas Main</span><span class=\"screen-reader-text\">archive page</span></a></li></ul></div></div><div class=\"deepDiveItem__wrapper--1f66829c0b5c2fabb3efe2e26098b6ae\"><div class=\"deepDiveItem__dots--eb67237c6bc6a40f4a22e5d09ba0da2a\"><div class=\"dotGrid__dots--cf24d0e6aff1f112b1e5d9065c4a71c1 dotGrid__blue--acac301fee94f7da075099d6526b2d56\"></div></div><a data-event-category=\"recirculation\" data-event-action=\"deep dive\" data-event-label=\"2\" theme=\"\" href=\"https://www.technologyreview.com/2023/10/04/1080528/2023-climate-tech-companies-electric-vehicles-batteries-carbon-removal-energy-storage/\" class=\"\"><div class=\"deepDiveItem__image--9f46930b611650920e4f41bafd09792b\"><span class=\"image__wrapper--373a87c0cefdc42b3a8bd26457571412\"><div class=\"image__smartCrop--7cdf585afe2c24f88c35ba955f4bde5d\" style=\"padding-top:63.89%\"><span class=\" lazy-load-image-background opacity\" style=\"color:transparent;display:inline-block\"><span class=\"image__img--e1a73f503bf0f4a3d2504e1d64ea29cb imgLazyLoaded\" style=\"display:inline-block;object-position:50% 50%\"></span></span></div></span><figcaption class=\"image__meta--16eb0f8dde685315ba1d77ae67c89391\"></figcaption></div><h3 class=\"deepDiveItem__title--3e16a8cfc8e5438393e96fd7793611ad\" data-position=\"2\">15 Climate Tech Companies to Watch</h3></a><div class=\"deepDiveItem__description--a66757f9bd3c5b8487eca015f7170785\"></div><div class=\"deepDiveItem__bylineWrapper--4994cf475a1ca86d455869de2a94bf46\"><span class=\"deepDiveItem__by--81a3efc13621a0837a077f98502df2b0\" aria-hidden=\"true\">By </span><ul class=\"deepDiveItem__list--3c982fc29ba3b6b16281ae8e8230f2d7\" aria-label=\"Authors\"><li class=\"deepDiveItem__author--6de04bbddafda5f472b616cf56122389\"><a theme=\"\" href=\"https://www.technologyreview.com/author/amy-nordrum/\" class=\"\"><span>Amy Nordrum</span><span class=\"screen-reader-text\">archive page</span></a></li></ul></div></div><div class=\"deepDiveItem__wrapper--1f66829c0b5c2fabb3efe2e26098b6ae\"><div class=\"deepDiveItem__dots--eb67237c6bc6a40f4a22e5d09ba0da2a\"><div class=\"dotGrid__dots--cf24d0e6aff1f112b1e5d9065c4a71c1 dotGrid__blue--acac301fee94f7da075099d6526b2d56\"></div></div><a data-event-category=\"recirculation\" data-event-action=\"deep dive\" data-event-label=\"3\" theme=\"\" href=\"https://www.technologyreview.com/2023/09/06/1079123/zinc-batteries-boost-eos/\" class=\"\"><div class=\"deepDiveItem__image--9f46930b611650920e4f41bafd09792b\"><span class=\"image__wrapper--373a87c0cefdc42b3a8bd26457571412\"><div class=\"image__smartCrop--7cdf585afe2c24f88c35ba955f4bde5d\" style=\"padding-top:63.89%\"><span class=\" lazy-load-image-background opacity\" style=\"color:transparent;display:inline-block\"><span class=\"image__img--e1a73f503bf0f4a3d2504e1d64ea29cb imgLazyLoaded\" style=\"display:inline-block;object-position:50% 50%\"></span></span></div></span><figcaption class=\"image__meta--16eb0f8dde685315ba1d77ae67c89391\"></figcaption></div><h3 class=\"deepDiveItem__title--3e16a8cfc8e5438393e96fd7793611ad\" data-position=\"3\">Zinc batteries that offer an alternative to lithium just got a big boost</h3></a><div class=\"deepDiveItem__description--a66757f9bd3c5b8487eca015f7170785\"><p>The US Department of Energy just committed a $400 million loan to battery maker Eos.</p>\n</div><div class=\"deepDiveItem__bylineWrapper--4994cf475a1ca86d455869de2a94bf46\"><span class=\"deepDiveItem__by--81a3efc13621a0837a077f98502df2b0\" aria-hidden=\"true\">By </span><ul class=\"deepDiveItem__list--3c982fc29ba3b6b16281ae8e8230f2d7\" aria-label=\"Authors\"><li class=\"deepDiveItem__author--6de04bbddafda5f472b616cf56122389\"><a theme=\"\" href=\"https://www.technologyreview.com/author/casey-crownhart/\" class=\"\"><span>Casey Crownhart</span><span class=\"screen-reader-text\">archive page</span></a></li></ul></div></div><div class=\"deepDiveItem__wrapper--1f66829c0b5c2fabb3efe2e26098b6ae\"><div class=\"deepDiveItem__dots--eb67237c6bc6a40f4a22e5d09ba0da2a\"><div class=\"dotGrid__dots--cf24d0e6aff1f112b1e5d9065c4a71c1 dotGrid__blue--acac301fee94f7da075099d6526b2d56\"></div></div><a data-event-category=\"recirculation\" data-event-action=\"deep dive\" data-event-label=\"4\" theme=\"\" href=\"https://www.technologyreview.com/2023/10/04/1080128/2023-climate-tech-companies-blue-frontier-air-conditioning-energy-storage-climate-technology/\" class=\"\"><div class=\"deepDiveItem__image--9f46930b611650920e4f41bafd09792b\"><figure><span class=\"image__wrapper--373a87c0cefdc42b3a8bd26457571412\"><div class=\"image__smartCrop--7cdf585afe2c24f88c35ba955f4bde5d\" style=\"padding-top:63.89%\"><span class=\" lazy-load-image-background opacity\" style=\"color:transparent;display:inline-block\"><span class=\"image__img--e1a73f503bf0f4a3d2504e1d64ea29cb imgLazyLoaded\" style=\"display:inline-block;object-position:50% 50%\"></span></span></div></span><figcaption class=\"image__meta--16eb0f8dde685315ba1d77ae67c89391\"></figcaption></figure></div><h3 class=\"deepDiveItem__title--3e16a8cfc8e5438393e96fd7793611ad\" data-position=\"4\">2023 Climate Tech Companies to Watch: Blue Frontier and its energy-efficient AC</h3></a><div class=\"deepDiveItem__description--a66757f9bd3c5b8487eca015f7170785\"><p>The startup's AC units suck moisture out of the air for more efficient cooling.</p>\n</div><div class=\"deepDiveItem__bylineWrapper--4994cf475a1ca86d455869de2a94bf46\"><span class=\"deepDiveItem__by--81a3efc13621a0837a077f98502df2b0\" aria-hidden=\"true\">By </span><ul class=\"deepDiveItem__list--3c982fc29ba3b6b16281ae8e8230f2d7\" aria-label=\"Authors\"><li class=\"deepDiveItem__author--6de04bbddafda5f472b616cf56122389\"><a theme=\"\" href=\"https://www.technologyreview.com/author/amy-nordrum/\" class=\"\"><span>Amy Nordrum</span><span class=\"screen-reader-text\">archive page</span></a></li></ul></div></div></div></div></div></div><div class=\"stayConnected__wrapper--b90e0dcbb6cf6356ceb04199b3b78f82\"><div class=\"stayConnected__innerWrap--c5329c1dca09c736eda9fb79fd71d749\"><div class=\"stayConnected__readableWrap--f13598aae91f6636850f3206bfd837b6\"><h3 class=\"stayConnected__subTitle--5d8c0eb11c13e1dbaa29b71a431d271b\">Stay connected</h3><div class=\"stayConnected__illustration--653f31dd2a4d4aca07841f47b1e22b6d\"><span class=\"image__wrapper--373a87c0cefdc42b3a8bd26457571412\"><span class=\" lazy-load-image-background opacity\" style=\"color:transparent;display:inline-block\"><span class=\"image__img--e1a73f503bf0f4a3d2504e1d64ea29cb imgLazyLoaded\" style=\"display:inline-block\"></span></span></span><figcaption class=\"image__meta--16eb0f8dde685315ba1d77ae67c89391\"></figcaption><span class=\"stayConnected__illustrationCredit--ec717c28346babdc077959500eb9af56\">Illustration by Rose Wong</span></div><h2 class=\"stayConnected__title--ec5b2be2348e03fd7efbd67b79c95459\">Get the latest updates from<br/>MIT Technology Review</h2><p class=\"stayConnected__desc--346d21d69d2ecc8f258fcda0e2057051\">Discover special offers, top stories,\n upcoming events, and more.</p><form class=\"stayConnected__form--18307598e0857e3bb696e62099890f3d\"><label for=\"email\" class=\"stayConnected__formWrap--bc55a4930c54f6e27130718c8abe7f9f\"><div class=\"stayConnected__labelWrap--a7bf6e431dad2248d7a5d6743face8f4\"><span class=\"stayConnected__label--49df038d675331d33cb3be3744dc2aa4\">Enter your email</span></div><div class=\"stayConnected__inputWrap--c530e7aff15a90a594ff9e4f5f5e1783\"><input type=\"email\" id=\"email\" name=\"email\" class=\"stayConnected__input--4b385ef9dfe4b3c2c6268801645e29e9\" autoComplete=\"email\" required=\"\"/><input type=\"text\" id=\"name\" name=\"name\" class=\"stayConnected__hp--8d4ec1df04d5951cd624f35ba9d4fbfa\" tabindex=\"-1\" autoComplete=\"off\"/><div class=\"stayConnected__submitWrap--8615eaac88e0ce927745491334961b19\"><button type=\"submit\" class=\"stayConnected__submit--1d8dc2a487df662d908236592da5e5fa\" aria-label=\"Submit email\"><div class=\"stayConnected__arrow--464ca9ee54c47630a3d460b7de7c7f71\"><svg width=\"17\" height=\"15\" fill=\"none\"><path stroke=\"#000\" d=\"M0 8.149h15.66M9.532 1L16 7.809l-6.468 6.468\"></path></svg></div><div class=\"stayConnected__check--467f0ffeb06f074452e92848a7f5b816\"><svg width=\"18\" height=\"16\" viewBox=\"0 0 18 16\" fill=\"none\"><path data-name=\"check\" d=\"M1 8.32502L6.5 14.2766L17 1\" stroke=\"black\"></path></svg></div></button></div></div><a href=\"/privacy/\" class=\"stayConnected__privacyLink--cae6fca4c8d36d5ebfe832b6c2d52a88\" aria-label=\"Read our Privacy Policy\">Privacy Policy</a></label><div class=\"stayConnected__responseMessage--12bde8aaa78e1b908dcc7bf65887ca9f\"><div class=\"stayConnected__labelWrap--a7bf6e431dad2248d7a5d6743face8f4\"><p class=\"stayConnected__label--49df038d675331d33cb3be3744dc2aa4 stayConnected__centered--b7b09fbd037c0a7bf4fabf1d2474317a\">Thank you for submitting your email!</p></div><a class=\"stayConnected__btn--220de7597843d01758713e133a307e0d\" href=\"/newsletter-preferences?email_address=undefined\">Explore more newsletters</a></div><div class=\"stayConnected__responseMessage--12bde8aaa78e1b908dcc7bf65887ca9f\"><div class=\"stayConnected__labelWrap--a7bf6e431dad2248d7a5d6743face8f4\"><p class=\"stayConnected__label--49df038d675331d33cb3be3744dc2aa4 stayConnected__error--a1952d4717e04c4e1ed4f70509b52342 stayConnected__errorTitle--a6c139deaa8c1fca29336ea15a098c50\">It looks like something went wrong.</p></div><p class=\"stayConnected__errorMessage--9a73d41f2009763d9cc7f54cee45585b\">\n We’re having trouble saving your preferences.\n Try refreshing this page and updating them one\n more time. If you continue to get this message,\n reach out to us at\n <a href=\"mailto:[email protected]\" class=\"stayConnected__link--35dca415e25519bea77fdb0f42df6d96\">[email protected]</a> with a list of newsletters you’d like to receive.</p></div></form></div><div class=\"stayConnected__dots--c3970ba8ffa0058d3f128ce7dac44cbe\"><div class=\"dotGrid__dots--cf24d0e6aff1f112b1e5d9065c4a71c1 dotGrid__blue--acac301fee94f7da075099d6526b2d56\"></div></div></div></div><div class=\"columnArea--footerAd__wrapper--83fd8d5fed168c0542b6012548a6f716 columnArea__wrapper\"><div class=\"columnArea--footerAd__main--770dafcd064f316ebb858a8e19023aba\"><div data-loaded=\"false\" class=\"adUnit adUnit__wrapper--7a6d3a3802980dcd11d62d7be0607f4c\"><div class=\"site-footer adunitContainer\"><div class=\"adBox\" id=\"site-footer-1\"></div></div></div></div></div></main><footer class=\"footer__wrapper--08542015e8ac513a604251fdd151abd4\"><div class=\"footer__container--9635842395f3552c81dc9d57c32df15e\"><div style=\"grid-template-columns:1fr 1fr\" class=\"footer__gridContainer--03761a7cec4eaa5ae0be4d6b3cacd33c footer__storyMargin--43d2a03d4fcbe24fe3b5a925f6e8def7\"><div class=\"footer__storyCard--f2b0e559b8be3fc26a2def890a947555\"><div class=\"homepageStoryCard__wrapper--5d95dc382241d259dc249996a6e29782 homepageStoryCard__sizeSmall--b663142b4afddc58b8412c53256a362a\" style=\"background-color:transparent\"><div class=\"homepageStoryCard__cardContent--781b0933a7501874d3861a7401adaad2\"><div style=\"position:relative\"><div to=\"\" data-event-category=\"site-footer\" data-event-action=\"click\" data-event-label=\"The latest iteration of a legacy\"><h3 class=\"homepageStoryCard__hed--92c78a74bbc694463e43e32aafbbdfd7\" style=\"color:#EBECF0\">The latest iteration of a legacy</h3></div><div class=\"homepageStoryCard__dek--7c9e3c85841df43b5fb2385cdf2b46e3\" style=\"color:#EBECF0BF\">Founded at the Massachusetts Institute of Technology in 1899, MIT Technology Review is a world-renowned, independent media company whose insight, analysis, reviews, interviews and live events explain the newest technologies and their commercial, social and political impact.\n</div></div><div class=\"homepageStoryCard__buttonsWrapper--193850e7cfd0dfaa5adf23defdcfee00\"><div><a data-event-category=\"site-footer\" data-event-action=\"click\" data-event-event=\"click\" data-event-label=\"READ ABOUT OUR HISTORY\" theme=\"\" href=\"https://www.technologyreview.com/supertopic/about/\" class=\"homepageButton__primary--1ac769b83de7a9533d51d8e1ee1fa03a homepageButton__wrapper--ea3da1404c0f6feff3721c148ce8bd35 homepageButton__light--dc64f9250a6e2d4d82dd8a72fd60dfa0\"><div class=\"homepageButton__content--cb156cb3e926c467ad1074a54c18eff0\">READ ABOUT OUR HISTORY</div></a></div></div></div></div></div><div class=\"footer__storyCard--f2b0e559b8be3fc26a2def890a947555\"><div class=\"homepageStoryCard__wrapper--5d95dc382241d259dc249996a6e29782 homepageStoryCard__sizeSmall--b663142b4afddc58b8412c53256a362a\" style=\"background-color:transparent\"><div class=\"homepageStoryCard__cardContent--781b0933a7501874d3861a7401adaad2\"><div style=\"position:relative\"><div to=\"\" data-event-category=\"site-footer\" data-event-action=\"click\" data-event-label=\"Advertise with MIT Technology Review\"><h3 class=\"homepageStoryCard__hed--92c78a74bbc694463e43e32aafbbdfd7\" style=\"color:#EBECF0\">Advertise with MIT Technology Review</h3></div><div class=\"homepageStoryCard__dek--7c9e3c85841df43b5fb2385cdf2b46e3\" style=\"color:#EBECF0BF\">Elevate your brand to the forefront of conversation around emerging technologies that are radically transforming business. From event sponsorships to custom content to visually arresting video storytelling, advertising with MIT Technology Review creates opportunities for your brand to resonate with an unmatched audience of technology and business elite.</div></div><div class=\"homepageStoryCard__buttonsWrapper--193850e7cfd0dfaa5adf23defdcfee00\"><div><a data-event-category=\"site-footer\" data-event-action=\"click\" data-event-event=\"click\" data-event-label=\"ADVERTISE WITH US\" theme=\"\" href=\"https://mediakit.technologyreview.com\" class=\"homepageButton__primary--1ac769b83de7a9533d51d8e1ee1fa03a homepageButton__wrapper--ea3da1404c0f6feff3721c148ce8bd35 homepageButton__light--dc64f9250a6e2d4d82dd8a72fd60dfa0\"><div class=\"homepageButton__content--cb156cb3e926c467ad1074a54c18eff0\">ADVERTISE WITH US</div></a></div></div></div></div></div></div></div><div class=\"footer__bottomFooter--917d7426508146f3ca72bbd6b104eb77\"><div class=\"footer__imageCreditWrapper--63300b8b2f67d31a1ccd9489d669c0dc\"><div class=\"footer__creditWrapper--e3fe26602d158d1a7a08e223dd97fa03\"><p></p><p>© <!-- -->2023<!-- --> MIT Technology Review</p></div>",
"images": [
"https://wp.technologyreview.com/wp-content/uploads/2023/10/Sublime_Panorama-1.jpg"
],
"is corporative": true,
"keywords": null,
"lang": "en",
"links": [
"https://www.technologyreview.com/author/cassandra-willyard/",
"https://www.technologyreview.com/author/casey-crownhart/",
"https://www.technologyreview.com/author/will-douglas-heaven/",
"https://www.technologyreview.com/editorial-guidelines/",
"https://www.technologyreview.com/2023/09/06/1079123/zinc-batteries-boost-eos/",
"https://www.technologyreview.com/terms-of-service/",
"https://www.technologyreview.com/2023/10/23/1082189/data-poisoning-artists-fight-generative-ai/",
"https://www.technologyreview.com/topic/climate-change/",
// + 15 links
],
"published time": null,
"root_url": "https://www.technologyreview.com",
"title": "2023 Climate Tech Companies to Watch: Sublime Systems and its clean cement | MIT Technology Review",
"update time": null,
"url": "https://www.technologyreview.com/2023/10/04/1080122/2023-climate-tech-companies-sublime-systems-clean-cement-electrochemistry-climate-technology",
"videos": [],
"website topic": "Computers and Technology"
}
Leveraging the obtained data for your specific use case is now straightforward and efficient.
For a more granular understanding of each response field, we recommend referring to our API reference.
If you experience any complications or receive an error message during your request, we advise you to initially examine the status code of the response. Subsequently, please consult our comprehensive API reference page, which elucidates potential issues.
If you still require assistance feel free to reach out to our support team.
First, check the status code in the response to understand the nature of the issue. A common problem is when a user attempts to scrape information from a website that restricts access to such scraping operations.
Our API reference page provides explanations for each status code and instructions on how to fix related issues.
For instance, if you receive a response with a status code -
403 Forbidden
, this indicates that the request authorization has failed. To resolve the issue, locate this specific status code on the API reference page and follow the provided instructions.
If you continue experiencing difficulties, please contact our support team for immediate assistance.To enhance the performance, ensure that you are only enabling the parameters you need in the
params
option of your request. Disabling unnecessary features will result in faster response times.
In case of big-scale demand, please contact our support team and we can offer personal extended plans.If you require more structured information to be extracted from a webpage, we suggest exploring Knowledgator’s core text-mining solutions.
These advanced tools provide a thorough means to process your scraped data. With our NLP solutions, you can filter and categorize content, extract only the important pieces of information, and organize the data into customized tables.
Keep track of your API usage in your account settings on the RapidAPI dashboard.
Ensure you are on the appropriate pricing plan that suits your needs and monitor your request count to avoid unexpected charges.
We provide immediate assistance for any cases, please feel free to reach out to our support team without hesitation. Check our support team contact page.
asd
Last modified 1mo ago