Skip to main content gottem  — one API for every scraper.
Education
Verified

Udemy Scraper

Extract course listings, pricing, instructor reviews, and curriculum data from Udemy. Built on spider-browser .

Get started Docs
target
udemy.com
success rate
99.9%
latency
~4ms
Quick start

Extract data in minutes.

udemy-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.udemy.com/courses/development/web-development/");
await page.content(10000);

const data = await page.evaluate(`(() => {
  const courses = [];
  document.querySelectorAll("[data-purpose='course-card-container']").forEach(el => {
    const name = el.querySelector("[data-purpose='course-title-url'] div")?.textContent?.trim();
    const instructor = el.querySelector("[data-purpose='safely-set-inner-html:course-card:visible-instructors']")?.textContent?.trim();
    const rating = el.querySelector("[data-purpose='rating-number']")?.textContent?.trim();
    const price = el.querySelector("[data-purpose='course-price-text'] span span")?.textContent?.trim();
    if (name) courses.push({ name, instructor, rating, price });
  });
  return JSON.stringify({ total: courses.length, courses: courses.slice(0, 15) });
})()`);

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

Fields you can pull.

Course nameInstructorRatingStudentsPriceDurationLevelLast updated
Listings

Course catalog data

Extract courses, instructors, ratings, and pricing from udemy.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 udemy.com.

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