Tumblr Scraper
Spider read tumblr.com in 1.9 s without a browser and returned 50 lines of clean markdown.
This is a wonderful point that I did not include in my initial post.**Here's an addition of how to add a footer that brings you to the end notes and then has another link to bring you back to the spot that you were reading (this works when downloaded as a PDF or EPUB). **This goes in the work HTML; <a href="#definition1" name="definition"><sup>1</sup></a>This goes in the Author Endnote (or wherever you want it really); <a name="definition1"></a>1. Translation text here <a href="#definition">Back</a>It will look like this on AO3. And when you press the superscript, you will be taken to the endnotes. At the endnotes, there will be a link that takes you back to the exact place of the superscript.Above is an example from a guide I made yesterday after the engagement on this post and reblogs such as the one I'm responding to. It goes into alternative HTML and some other basics.**Guide Here:** https://archiveofourown.org/works/46679146**AO3 also has some HTML stuff in their FAQ: **https://archiveofourown.org/faq/formatting-content-on-ao3-with-html?language_id=enAlso, in regards to accessibility. Screen readers will only read what is present on the screen, so the hover over text will not be read. I'd highly recommend using footers or just making sure to have your definitions in your author notes or story in alternative ways.Footers are also more mobile/tablet friendly since they do not have cursors to hover with. But footers can be tapped and used :DHonestly using a combination of all of these can be useful. Or you can just keep it simple. I love the aspect of customization and creating unique reading experiences. This is something that AO3 truly does allow for, which is awesome!#jensownzoo#AO3#Archive of our own#Guide#tips & tricks#writers#fanfiction@ahhhsami / ahhhsami.tumblr.com 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 tumblr.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://www.tumblr.com/tagged/photography");
// 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://www.tumblr.com/tagged/photography");
await page.content(10000);
const data = await page.evaluate(`(() => {
const posts = [];
document.querySelectorAll("[data-cell-id]").forEach(el => {
const author = el.querySelector(".post-info-tumblelog a")?.textContent?.trim();
const text = el.querySelector(".post-body")?.textContent?.trim();
const notes = el.querySelector(".note-count")?.textContent?.trim();
if (author) posts.push({ author, text: text?.slice(0, 300), notes });
});
return JSON.stringify({ total: posts.length, posts: posts.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 tumblr.com costs to scrape.
The capture above cost $0.000254 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 Social scrapers.
Reddit Scraper
Extract subreddit posts, comments, vote counts, and user data from Reddit. The fastest Reddit scraping API with full JavaScript rendering for new Reddit and old Reddit layouts.
LinkedIn Scraper
Extract public company profiles, employee counts, job listings, and professional data from LinkedIn. The most reliable LinkedIn scraping API with residential proxy rotation and stealth browsing to handle aggressive anti-bot protection.
Twitter/X Scraper
Extract tweets, user profiles, engagement metrics, and trending topics from X (formerly Twitter). Full stealth browsing with residential proxies to handle X's aggressive bot detection.
Start scraping tumblr.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.