Envato Elements Scraper
Spider read elements.envato.com in 272 ms without a browser and returned 161 lines of clean markdown, including sections like "Every asset you need to create, all in one place", "AI tools built for how you actually work" and "The best value in one subscription".
Activate your creative flow withYour all-in-one creative assetUnlimited downloads of 29+ millionLifetime commercial license**Every type of asset, for any type of project**Presentation Templates220,000+Dreamshift: Surreal design essentialsGothic aesthetic in film: From ‘Frankenstein’ to ‘Wuthering Heights’**Why creatives choose Envato?**### Every asset you need to create, all in one placeWhere the world's broadest stock catalog meets AI, built for creatives. Millions of photos, video, fonts, templates, and everything in between; alongside AI capabilities and generative tools for images, video and audio.### AI tools built for how you actually workFind, create and iterate on every type of asset, for any type of project—all in one place. Complete with a lifetime commercial licence on everything you generate and download.### The best value in one subscriptionGet unlimited stock asset downloads, and plans that fit your AI usage needs. A simple subscription designed to give you more for less, without the complexity of counting credits.Start now## Trusted by top brands 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 elements.envato.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://elements.envato.com/graphic-templates/web/landing-page");
// No selectors, no schema. Spider reads the page and names the fields.
const data = await page.scrape();
console.log(data);
await spider.close(); import { SpiderBrowser } from "spider-browser";
const spider = new SpiderBrowser({
apiKey: process.env.SPIDER_API_KEY!,
stealth: 2,
});
await spider.connect();
const page = spider.page!;
await page.goto("https://elements.envato.com/graphic-templates/web/landing-page");
await page.content(10000);
const data = await page.evaluate(`(() => {
const assets = [];
document.querySelectorAll("[data-testid='item-card']").forEach(el => {
const title = el.querySelector("[data-testid='item-card-title']")?.textContent?.trim();
const contributor = el.querySelector("[data-testid='item-card-author']")?.textContent?.trim();
const img = el.querySelector("img")?.getAttribute("src");
if (title) assets.push({ title, contributor, img });
});
return JSON.stringify({ total: assets.length, assets: assets.slice(0, 10) });
})()`);
console.log(JSON.parse(data));
await spider.close(); 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 elements.envato.com costs to scrape.
The capture above cost $0.000781 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 Photography & Design scrapers.
Unsplash Scraper
Extract high-resolution photo URLs, photographer credits, download counts, and tag metadata from Unsplash free stock photos.
Pexels Scraper
Extract free stock photos, video thumbnails, photographer info, and resolution data from Pexels media library.
Shutterstock Scraper
Extract stock image metadata, contributor profiles, licensing info, and keyword tags from Shutterstock library.
Start scraping elements.envato.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.