Aligntech Scraper
Spider read aligntech.com in 305 ms without a browser and returned 57 lines of clean markdown, including sections like "Key metrics", "Annualized net revenues" and "Invisalign® Patients, including ~6.8M teens and kids".
## Who we are### Align Technology is a global medical device company that is changing lives through better smiles. We reimagine and reinvent the way orthodontic and restorative treatment is presented and delivered to millions of people around the world.The Invisalign® System is the most advanced clear aligner system in the world, trusted by over 22 million people worldwide to improve their smiles.iTero™ intraoral scanners can propel today's dental practice into the future by enhancing the patient experience and elevating clinical precision.## Key metrics# ~$4.1B#### Annualized net revenues# ~22.8M#### Invisalign® Patients, including ~6.8M teens and kids# 2,319#### Active patents# +20K#### Global Employees### CEO 2026 Letter to ShareholdersAs I reflect on fiscal 2025, I am proud of how Align navigated a year that demanded focus, resilience, and disciplined execution. The operating environment remained uneven across regions, consumer demand was pressured in parts of the world, and we made difficult organizational decisions to better position the company for the future. Yet through these challenges, our teams stayed anchored to what matters most—serving doctors and their patients—and delivered a strong finish to the year.[Link to CEO letter](<https://www.aligntech.com/documents/2026 CEO Letter to Shareholders.pdf>)**## Careers### As a part of our smart, diverse and fast-moving global team, you'll make an impact for a leader in innovation that's moving an industry forward.##### "My team inspires me. I come to work every day motivated to do something better."##### "Management encourages us to explore and dig into new and evolving technologies."## Strategic growth drivers### Our success over the last several years is the result of a clear focus on and continued execution of our strategic growth drivers. The same call, in code.
The capture above came back as markdown. These examples add a key, so you get browser rendering, proxies, and concurrency on aligntech.com.
import { SpiderBrowser } from "spider-browser";
const spider = new SpiderBrowser({
apiKey: process.env.SPIDER_API_KEY!,
});
await spider.connect();
const page = spider.page!;
await page.goto("https://aligntech.com");
// No selectors, no schema. Spider reads the page and names the fields.
const data = await page.scrape();
console.log(data);
await spider.close(); import { Spider } from "@spider-cloud/spider-client";
const spider = new Spider({ apiKey: process.env.SPIDER_API_KEY! });
const result = await spider.scrapeUrl("https://www.aligntech.com", {
return_format: "markdown",
});
console.log(result); Ready for volume? Get an API key →
Fields you can pull.
Spider names these from the page. The capture above came back as markdown; the same
call with return_format: "json" returns them as keys.
What aligntech.com costs to scrape.
The capture above cost $0.000036 to fetch. Pricing is $1 per GB of pre-transformation bandwidth plus $0.001 per CPU minute, so a page like this one lands at a fraction of a cent. Failed requests are billed at $0.
- Free balance on signup
- No card required to test
- Balance never expires
Run it keyless, no account
More Directories scrapers.
Spotify Main Page Scraper
Extract structured data from Spotify Main Page with automated CSS selectors.
Roblox Landing Page Scraper
Roblox landing page metadata and cookie banner information.
Mozilla Homepage Data Scraper
A scraper for extracting all useful data from the Mozilla homepage, including site metadata, navigation, and content.
Start scraping aligntech.com.
You already have the call. A key raises the rate limit and turns on browser rendering, proxies, and concurrency. Balance never expires, and top-ups go through secure checkout.