VOOZH about

URL: https://apify.com/compute-edge/conferenceindex-scraper

⇱ Academic Conference Scraper Β· Apify


Pricing

from $3.00 / 1,000 results

Go to Apify Store

Conference Index Scraper

Extract academic conference listings from ConferenceIndex.org β€” the comprehensive directory of international academic conferences, seminars, workshops, and symposiums.

Pricing

from $3.00 / 1,000 results

Rating

0.0

(0)

Developer

πŸ‘ Compute Edge

Compute Edge

Maintained by Community

Actor stats

0

Bookmarked

4

Total users

1

Monthly active users

a month ago

Last modified

Share

Conference Index Academic Conference Scraper

Extract academic conference listings from ConferenceIndex.org β€” the comprehensive directory of international academic conferences, seminars, workshops, and symposiums. This Actor scrapes conference names, dates, locations, venues, organizers, websites, submission deadlines, topics, event tracks, and full descriptions from the Conference Index database.

Whether you are a researcher looking for upcoming conferences in your field, an academic institution tracking events across disciplines, or a conference organizer monitoring the competitive landscape, this scraper provides structured data from one of the largest academic conference directories available online. Conference Index covers thousands of events across disciplines including computer science, artificial intelligence, machine learning, engineering, medicine, business, and many more.

The scraper operates in two modes. In quick mode, it extracts basic conference information (name, date, location) directly from topic listing pages. In detail mode, it visits each conference's individual page to extract the full set of fields including JSON-LD structured data, venue information, organizer details, submission deadlines, event tracks, and the complete description. This flexibility lets you balance speed against data completeness depending on your needs.

What data can you scrape from Conference Index?

FieldDescription
nameFull conference name
shortNameAbbreviated conference name (e.g., ICSET)
startDateConference start date (ISO 8601 from JSON-LD)
endDateConference end date (ISO 8601 from JSON-LD)
dateTextHuman-readable date range (e.g., "March 15-16, 2026")
locationCity and country (e.g., "New Delhi, India")
venueVenue name (e.g., "Hotel Suncourt Corporate")
organizerOrganizing body or institution
websiteOfficial conference website URL
contactEmailContact email (decoded from Cloudflare obfuscation)
submissionDeadlinePaper submission deadline
topicsConference tags / discipline keywords
eventTracksSpecific tracks and sub-topics
descriptionFull conference description text
eventStatusSchema.org event status (Scheduled, Cancelled, etc.)
attendanceModeOnline, offline, or mixed attendance
eventTypeConference, seminar, workshop, etc.
presentationModeDigital, in-person, or hybrid
eventUrlConference Index page URL

Why use this Conference Index scraper?

  • No login required β€” all conference data is publicly accessible
  • JSON-LD extraction β€” uses schema.org structured data for high-accuracy date and status parsing
  • Cloudflare email decoding β€” automatically decodes obfuscated contact emails
  • Topic filtering β€” search by any discipline (computer-science, medicine, engineering, etc.)
  • Fast and efficient β€” uses CheerioCrawler (no browser needed), keeping compute costs very low
  • Pagination support β€” automatically follows listing pages across multiple pages
  • Two modes β€” quick listing data or full detail page scraping

How to scrape Conference Index

  1. Go to the Conference Index Scraper page on Apify Store
  2. Click Try for free
  3. Enter a Topic slug (e.g., computer-science, artificial-intelligence, machine-learning). You can find valid slugs at conferenceindex.org/disciplines
  4. Set Max Pages to control how many listing pages to scrape (each page has many conferences)
  5. Toggle Scrape Detail Pages on for full data (dates, venue, organizer, website, topics, tracks) or off for a quick list
  6. Optionally set Max Requests as a safety limit on total HTTP requests
  7. Click Start and wait for results
  8. Download your data as JSON, CSV, or Excel from the Dataset tab

Input example

{
"topic":"computer-science",
"maxPages":5,
"scrapeDetails":true,
"maxRequestsPerCrawl":500
}

Output example

Each conference returns a JSON object like this (with detail scraping enabled):

{
"eventUrl":"https://conferenceindex.org/event/international-conference-on-science-engineering-technology-icset-2026-march-new-delhi-in",
"topic":"computer-science",
"name":"International Conference on Science, Engineering & Technology",
"startDate":"2026-03-15T00:00:00.000000Z",
"endDate":"2026-03-16T00:00:00.000000Z",
"eventStatus":"https://schema.org/EventScheduled",
"attendanceMode":"https://schema.org/OnlineEventAttendanceMode",
"organizer":"Researchfora",
"description":"International Conference on Science, Engineering & Technology (ICSET - 2026) will be held in New Delhi, India during 15th-16th Mar 2026...",
"location":"New Delhi, India",
"venue":"Hotel Suncourt Corporate",
"dateText":"March 15-16, 2026",
"submissionDeadline":"March 15, 2026",
"website":"https://researchfora.com/Conference/12725/ICSET/",
"contactEmail":"info@researchfora.com",
"shortName":"ICSET",
"eventType":"Conference",
"presentationMode":"Digital",
"topics":["science","concrete engineering","engineering","computer science","technology"],
"eventTracks":["Information Technology","Computer Engineering","Chemical Science and Engineering","Civil Engineering","Mechanical Engineering"]
}

Without detail scraping (quick mode):

{
"name":"International Conference on Science, Engineering & Technology (ICSET)",
"date":"Mar 15",
"location":"New Delhi, India",
"eventUrl":"https://conferenceindex.org/event/international-conference-on-science-engineering-technology-icset-2026-march-new-delhi-in",
"topic":"computer-science"
}

How much does it cost to scrape Conference Index?

This Actor uses CheerioCrawler (no browser), so compute costs are extremely low.

ScenarioPagesEst. ResultsEst. ComputeEst. Actor Fee
One topic, quick mode1~100~$0.005~$0.20
One topic, with details5~500~$0.05~$1.00
One topic, full scrape20~2,000~$0.20~$4.00
Multiple topics50~5,000~$0.50~$10.00

Actor pricing: $0.002 per result + minimal compute costs. A typical run of 5 pages with detail scraping costs under $1.50 total.

Input parameters

ParameterTypeRequiredDefaultDescription
topicstringYescomputer-scienceTopic slug from conferenceindex.org/disciplines
maxPagesintegerNo5Max listing pages to scrape (1-100)
scrapeDetailsbooleanNotrueVisit detail pages for full data
maxRequestsPerCrawlintegerNo500Safety limit on total HTTP requests

Tips for best results

  • Finding topic slugs: Visit conferenceindex.org/disciplines and click on a discipline. The URL slug after /conferences/ is what you need (e.g., computer-science, artificial-intelligence, data-science)
  • Quick mode: Set scrapeDetails to false for a fast list of names, dates, locations, and URLs without visiting each detail page
  • Large scrapes: Increase maxPages and maxRequestsPerCrawl together. With detail scraping, each conference listing enqueues one additional request
  • Email extraction: Contact emails are often Cloudflare-obfuscated on Conference Index. This scraper automatically decodes them when possible

Integrations

Connect Conference Index data with your workflow:

  • API β€” Access results programmatically via the Apify API
  • Webhooks β€” Get notified when a scrape completes
  • Zapier / Make β€” Pipe results into Google Sheets, CRMs, or databases
  • Python / Node.js β€” Use the Apify SDK to run and retrieve data

Legal disclaimer

This Actor extracts publicly available conference information from ConferenceIndex.org. The site publishes its content under a Creative Commons Attribution 4.0 International License, which permits sharing and adapting the material for any purpose with appropriate attribution. This Actor does not bypass authentication, access protected content, or extract private user data. The scraped data consists of conference listings that organizers have voluntarily published on the public directory.

Users are responsible for ensuring their use of scraped data complies with applicable laws and the Creative Commons license terms. For questions about data usage, consult a legal professional.

Support

  • Issues? Open an issue on the Actor's Apify page
  • Custom data needs? Contact us for enterprise solutions

You might also like

Academic Conference CFP & Registration Monitor

trovevault/academic-conference-cfp-monitor

Monitors conference names, CFP deadlines, registration dates, fees, and attendance mode from academic conference pages. Export data, run via API, schedule and monitor runs, or integrate with other tools.

Medical Conference Proceedings β€” Abstract Mining API

azureblue/medical-conference-scraper

Search medical conference proceedings via Europe PMC. Returns title, authors, conference, abstract, DOI and publication date.

Custom Conference Speaker Scraper (Saad Belcaid)

belcaidsaad/saadbelcaid-custom-conference-speaker

Get speaker data from conference websites. Names, titles, companies, bios, and photos β€” ready for outreach, research, or enrichment.

15

Sched Conference Scraper - Speakers, Sessions, Sponsors & Leads

scrapesage/sched-conference-scraper

Scrape and Sched.com conference: the full speaker roster with bios, job titles, companies and social links, the complete session agenda (times, venues, tracks, descriptions), and sponsors with tiers and logos. Turn conference speakers into B2B leads - no login needed. Export to JSON, CSV or Excel.

Academic Research Mcp

ryanclinton/academic-research-mcp

Academic Research Mcp. Available on the Apify Store with pay-per-event pricing.

OpenAlex Academic Works Scraper

crawlerbros/philpapers-scraper

Search and scrape academic papers from OpenAlex - the free, open academic database with 200M+ works. Filter by keyword, author, year, open access status, and type. No API key required.

Events Lead & Conferences Email Scraper - Low-costπŸ’²πŸ”₯πŸŽ€πŸ”

delectable_incubator/events-lead-conferences-email-scraper-low-cost

Scrape event and conference contacts πŸ”πŸŽ€ with a powerful email scraper. Extract verified organizer and speaker emails, event titles, descriptions, contact details, and source links using keywords, domains, or platforms. Ideal for lead generation, outreach campaigns and market research πŸ“ŠπŸš€

Event Lead Extractor β€” Speakers & Attendees

ryanclinton/event-lead-extractor

Turn any conference, trade show, or event page into a qualified lead list β€” complete with emails, phone numbers, social profiles, and lead scores. Paste in event URLs from Eventbrite, Lu.ma, Sched, Bizzabo, or any custom conference website and the actor does the rest.

25