Discover/confex.com API
live

confex.com APIconfex.com

Access conference schedules, session details, presenter profiles, and paper abstracts from any Confex-hosted meeting via 12 structured endpoints.

Endpoints
12
Updated
14d ago
Try it
Meeting code identifying the conference (e.g. '105ANNUAL', '107ANNUAL', '2026Summit').
Organization subdomain used in the Confex URL (e.g. 'ams').
api.parse.bot/scraper/33f46ed7-4974-46d7-8807-2c33b3f3ac3e/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Use it in your codegrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/33f46ed7-4974-46d7-8807-2c33b3f3ac3e/get_meeting_home?meeting_code=105ANNUAL&organization=ams' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 12 totalclick to expand

Retrieve the home/welcome page for a specific meeting. Returns meeting name, dates, location, timezone, and welcome content including navigation modules.

Input
ParamTypeDescription
meeting_coderequiredstringMeeting code identifying the conference (e.g. '105ANNUAL', '107ANNUAL', '2026Summit').
organizationrequiredstringOrganization subdomain used in the Confex URL (e.g. 'ams').
Response
{
  "type": "object",
  "fields": {
    "id": "string, meeting identifier",
    "label": "string, entity type label",
    "MeetingTitle": "string, full title of the meeting",
    "ChildList_Module": "array of module path references available for this meeting"
  },
  "sample": {
    "data": {
      "id": "0",
      "label": "Home",
      "MeetingTitle": "105th AMS Annual Meeting",
      "ChildList_Module": [
        "ModuleProgramBook/0",
        "ModuleSessionsByDay/0"
      ]
    },
    "status": "success"
  }
}

About the confex.com API

The Confex API exposes 12 endpoints covering meeting schedules, session details, paper abstracts, and presenter profiles for conferences hosted on confex.com. Starting with list_available_meetings to discover active conferences by organization subdomain, you can drill into programs, sessions, individual papers, and speaker records — all returning structured JSON with consistent ID fields for chaining requests.

Meeting and Program Discovery

The list_available_meetings endpoint takes an organization subdomain (e.g. ams) and returns an array of meeting objects with title, meeting_code, dates, location, and url. That meeting_code is the key parameter shared across all other endpoints. get_meeting_home returns the full meeting record including MeetingTitle, date/location fields, and a ChildList_Module array of available module paths for that specific meeting. list_conferences_and_symposia then returns all programs under a meeting, each with ProgramCode, Title, and a ChildList_Session reference.

Sessions, Papers, and Calendar

get_conference_program accepts a program_id from the program listing and returns session objects containing Title, GoodType, SortableTimeString, and ChildList_Paper references. get_session_details resolves a specific confex_session_id into full session metadata plus a nested papers array — each paper object includes Title, Abstract, PresentingAuthor, and related metadata. get_paper_details resolves individual papers by paper_id to retrieve the full Abstract and citation fields. Note that non-paper schedule entries (breaks, plenaries) may return an empty Abstract.

get_meeting_calendar returns an array of day objects keyed by YYYY-MM-DD date strings, each carrying ChildList_SlotData references. get_sessions_by_day resolves a day_id into slot-level data including Entry_Title, Slot_StartTime, Slot_EndTime, Session_id, and room assignments — useful for building a time-grid view of a full conference day.

People and Search

get_people returns presenter and chair records paged by the first letter of the last name (letter param, A–Z), with each person record exposing FirstName, LastName, and Affiliation. get_person_details resolves a person_id into a fuller profile including affiliation, address, and role assignments. The search_meeting endpoint accepts a free-text query and returns a ChildList_Hits array of matching sessions, papers, or people, each with Title, Abstract, id, and additional metadata. get_module_data is a generic endpoint for accessing any module path listed in get_meeting_home's ChildList_Module field, useful for navigating module types that don't have a dedicated endpoint.

Common use cases
  • Build a searchable program guide for a specific Confex-hosted conference using search_meeting and get_session_details.
  • Aggregate paper abstracts and presenting author names across all sessions in a meeting using get_session_details and get_paper_details.
  • Construct a day-by-day schedule grid with room and time data using get_meeting_calendar and get_sessions_by_day.
  • Compile a speaker directory with institutional affiliations for all presenters in a meeting using get_people and get_person_details.
  • Monitor which conferences are currently listed under an organization's Confex subdomain using list_available_meetings.
  • Map all symposia and sub-programs within a large annual meeting using list_conferences_and_symposia and get_conference_program.
  • Cross-reference session IDs from day-slot data with full session records to enrich a scheduling dataset.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000250 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Confex offer an official developer API?+
Confex does not publish a documented public developer API. Access to structured meeting data is not available through an official endpoint they expose to third parties.
What does `get_people` return, and is the full presenter list always available?+
get_people returns FirstName, LastName, Affiliation, and role metadata for presenters and chairs, paged by the first letter of the last name. However, for meetings that have not yet started, the people list may be empty — the data is populated for past and currently active meetings.
Does the API return paper abstracts for every scheduled entry in a session?+
Not for every entry. Non-paper schedule entries such as breaks or opening remarks may return an empty Abstract field in get_paper_details. The Abstract field is reliably populated for submitted paper and presentation entries.
Does the API cover registration data or attendee lists?+
No. The API covers conference schedules, session details, paper abstracts, presenter profiles, and meeting metadata. Attendee registration records are not part of any endpoint's response. You can fork this API on Parse and revise it to add an endpoint if Confex exposes attendee-facing data on a specific page.
Can I retrieve sessions across all organizations or all meetings in a single call?+
Not currently. Each request requires both a meeting_code and an organization subdomain, so queries are scoped to one meeting at a time. list_available_meetings can enumerate the meetings under a single subdomain, but cross-organization discovery is not supported in a single call. You can fork the API on Parse and revise it to add a multi-organization aggregation endpoint.
Page content last updated . Spec covers 12 endpoints from confex.com.
Related APIs in EducationSee all →
arxiv.org API
Search and discover academic research papers on arXiv using keywords, authors, titles, categories, and dates, then access detailed metadata for any paper. Browse the complete arXiv category taxonomy to explore research across different scientific disciplines.
maxpreps.com API
Access high school sports data from MaxPreps. Search for schools, retrieve team rosters and schedules, look up athlete profiles, and browse national or state rankings across all sports.
athletic.net API
Search and analyze cross country and track & field performance data across the US, including athlete profiles, meet results, team rosters, and rankings. Access comprehensive meet information, historical records, and state-level competition data to track athlete progress and discover top performers.
allaboutcircuits.com API
Access educational electronics content from All About Circuits, including technical articles, circuit diagrams, textbook volumes, and forum discussions organized by category. Search and browse the latest resources, view detailed articles, explore engineering tools, and find answers across their community forums.
illinoisreportcard.com API
Search and analyze comprehensive performance data for Illinois public schools, districts, and the state, including academic achievements in ELA, math, and science, student demographics, teacher and administrator information, school finances, and environmental conditions. Compare schools side-by-side, track growth metrics, and access accountability ratings and school highlights to make informed decisions about education quality.
noor-book.com API
Search and discover books across 1,800+ categories in the Noor Book library, retrieving detailed information about titles, authors, biographies, and book metadata. Access comprehensive author profiles and browse one of the largest Arabic and English digital book collections with over 289,000 authors.
quizbowlpackets.com API
Search and browse thousands of quizbowl question sets across all competition levels, then access detailed metadata like difficulty, subjects, and download links for each packet. Find the perfect practice materials for High School, Collegiate, Middle School, or Pop Culture quizbowl competitions.
amberstudent.com API
Search student accommodation listings across popular cities and access comprehensive property information including room types, pricing trends, and tenant reviews. Get detailed insights into student housing options to compare amenities, prices, and community feedback all in one place.