Skip to main content
AI Studio  add-on for Spider.
Education
ted.com Verified

TED Talks Scraper

Extract talk transcripts, speaker profiles, topic tags, view counts, and event details from TED conference archives. Built on spider-browser .

Get started Docs
target
ted.com
success rate
99.9%
latency
~4ms
POST /fetch/ted.com/
return_format
curl -X POST https://api.spider.cloud/fetch/ted.com/ \
  -H "Authorization: Bearer $SPIDER_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"return_format": "json"}'
200 OK · cache hit · response shape
{
  "url": "https://ted.com/",
  "status": 200,
  "data": {
    "talk_title": "string",
    "speaker": "string",
    "duration": "string",
    "views": "string",
    "topic_tags": "string",
    "event": "string",
    "posted_date": "string",
    "rating": "string"
  }
}
Quick start

Extract data in minutes.

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

ted-talks-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.ted.com/talks?sort=popular&language=en");

const data = await page.evaluate(`(() => {
  const talks = [];
  document.querySelectorAll("[data-testid='talk-card']").forEach(el => {
    const title = el.querySelector("h3")?.textContent?.trim();
    const speaker = el.querySelector("[data-testid='talk-card-speaker']")?.textContent?.trim();
    const duration = el.querySelector("[data-testid='talk-card-duration']")?.textContent?.trim();
    const views = el.querySelector("[data-testid='talk-card-views']")?.textContent?.trim();
    if (title) talks.push({ title, speaker, duration, views });
  });
  return JSON.stringify({ total: talks.length, talks: talks.slice(0, 15) });
})()`);

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

Fields you can pull.

Talk titleSpeakerDurationViewsTopic tagsEventPosted dateRating
Listings

Course catalog data

Extract courses, instructors, ratings, and pricing from ted.com.

Rendering

Dynamic catalogs

Handle filtered search results, pagination, and lazy-loaded course cards.

Scale

Platform coverage

Scrape entire course catalogs across categories and skill levels.

Related

More Education scrapers.

Start

Start scraping ted.com.

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