Skip to main content
AI Studio  add-on for Spider.
Science & Research
tandfonline.com Verified

Taylor & Francis Scraper

Extract research articles, journal metadata, book listings, and citation data from Taylor & Francis Online academic publisher. Built on spider-browser .

Get started Docs
target
tandfonline.com
success rate
99.9%
latency
~4ms
POST /fetch/tandfonline.com/
return_format
curl -X POST https://api.spider.cloud/fetch/tandfonline.com/ \
  -H "Authorization: Bearer $SPIDER_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"return_format": "json"}'
200 OK · cache hit · response shape
{
  "url": "https://tandfonline.com/",
  "status": 200,
  "data": {
    "article_title": "string",
    "authors": "string",
    "abstract": "string",
    "journal": "string",
    "doi": "string",
    "published_date": "string",
    "views": "string",
    "citations": "string"
  }
}
Quick start

Extract data in minutes.

Structured JSON from tandfonline.com with a single POST. AI-resolved selectors, cached on the first call.

taylor-francis-scraper.ts
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.tandfonline.com/action/doSearch?AllField=sustainability");
await page.content(10000);

const data = await page.evaluate(`(() => {
  const articles = [];
  document.querySelectorAll(".searchResultItem, .result-item").forEach(el => {
    const title = el.querySelector("h3 a, .art_title a")?.textContent?.trim();
    const authors = el.querySelector(".author, .result-authors")?.textContent?.trim();
    const journal = el.querySelector(".journal-title, .result-journal")?.textContent?.trim();
    const date = el.querySelector(".publication-year, .result-date")?.textContent?.trim();
    if (title) articles.push({ title, authors, journal, date });
  });
  return JSON.stringify({ total: articles.length, articles: articles.slice(0, 15) });
})()`);

console.log(JSON.parse(data));
await spider.close();
ready to run · spider-browser · TypeScript
Extraction

Fields you can pull.

Article titleAuthorsAbstractJournalDOIPublished dateViewsCitations
Content

Paper extraction

Extract abstracts, citations, author data, and metadata from tandfonline.com.

Parsing

Academic parsing

Clean extraction of LaTeX, references, and structured research data.

Scale

Bulk research

Process thousands of papers and citations for systematic reviews.

Related

More Science & Research scrapers.

Start

Start scraping tandfonline.com.

Grab an API key and call the endpoint above. The first request resolves the config; every request after hits cache.