apernitch
  • Conferences
  • Feedback
  • Login

Conferences

Filters apply automatically as you type
MICCAI 2025
1027 papers 4,325,598 total tokens
Updated Feb 18, 2026
MICCAI 2024
856 papers
Updated Feb 19, 2026
MICCAI 2023
733 papers
Updated Feb 19, 2026
MICCAI 2022
575 papers 98,695 total tokens
Updated Feb 18, 2026
MICCAI 2021
531 papers
Updated Feb 21, 2026
Start Scraping

Are you sure you want to start scraping papers for ?

Specify a number to limit papers scraped, or leave empty to scrape all papers.

This process may take several minutes depending on the number of papers.

Scraping Log:
Loading... Papers: -
Loading log...
Stop Scraping

Are you sure you want to stop the scraping process?

Any papers already scraped will be saved, but the process will be interrupted.

Success

Error

Add New Conference and Start Scraping
Full name of the conference
Short name (optional)
Conference year (optional)
Main conference website URL (optional)
URL where the papers are listed
Upload a logo for the conference (optional, PNG, JPG, or SVG)
Leave empty to automatically infer the schema, or select a template/paste custom JSON. Schema format help
Limit the number of papers to scrape (for testing)
Scraping Schema Format
Note: The scraping schema is optional. If left empty, the system will automatically analyze the paper listing page and infer the appropriate schema.

If you want to provide a custom schema, it should be a JSON object with the following structure:

{
  "name": "Schema Description",
  "baseSelector": ".container-class",
  "fields": [
    {
      "name": "title",
      "type": "text",
      "selector": ".title-class"
    },
    {
      "name": "authors",
      "type": "list",
      "selector": ".author-link",
      "fields": [
        {
          "name": "author_name",
          "type": "text"
        }
      ]
    },
    {
      "name": "paper_url",
      "type": "attribute",
      "selector": "a.paper-link",
      "attribute": "href"
    }
  ]
}
name
Description of the schema
baseSelector
CSS selector for the container of each paper item
fields
Array of field definitions:
  • type: "text" - Extract text content from element
  • type: "list" - Extract multiple items (like authors)
  • type: "attribute" - Extract an attribute value (requires attribute field)