Discover/ccfddl.com API
live

ccfddl.com APIccfddl.com

Access CS conference deadlines, CCF/CORE ranks, acceptance rates, and submission timelines across all research categories via the CCF Deadlines API.

Endpoints
8
Updated
14d ago
Try it
Maximum number of conferences to return.
Number of conferences to skip before returning results.
api.parse.bot/scraper/c56b7cfc-ead5-41e8-b93e-60b6a6f35c92/<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/c56b7cfc-ead5-41e8-b93e-60b6a6f35c92/get_all_conferences?limit=3' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 8 totalclick to expand

Retrieve all conferences with full details including timelines, ranks, and acceptance rates. Supports pagination via limit and offset parameters.

Input
ParamTypeDescription
limitintegerMaximum number of conferences to return.
offsetintegerNumber of conferences to skip before returning results.
Response
{
  "type": "object",
  "fields": {
    "total": "integer, total number of conferences in the database",
    "conferences": "array of conference objects with title, description, sub, rank, confs, acceptance_rates, category_full"
  },
  "sample": {
    "data": {
      "total": 341,
      "conferences": [
        {
          "sub": "AI",
          "dblp": "aaai",
          "rank": {
            "ccf": "A",
            "core": "A*",
            "thcpl": "A"
          },
          "confs": [
            {
              "id": "aaai22",
              "date": "February 22 - March 1, 2022",
              "link": "https://aaai.org/Conferences/AAAI-22/",
              "year": 2022,
              "place": "Vancouver, British Columbia, Canada",
              "timeline": [
                {
                  "deadline": "2021-09-08 23:59:59",
                  "abstract_deadline": "2021-08-30 23:59:59"
                }
              ],
              "timezone": "UTC-12"
            }
          ],
          "title": "AAAI",
          "description": "AAAI Conference on Artificial Intelligence",
          "category_full": "Artificial Intelligence",
          "acceptance_rates": [
            {
              "str": "23.7%(2342/9862 24')",
              "rate": 0.237477185155141,
              "year": 2024,
              "source": "https://github.com/lixin4ever/Conference-Acceptance-Rate",
              "accepted": 2342,
              "submitted": 9862
            }
          ]
        }
      ]
    },
    "status": "success"
  }
}

About the ccfddl.com API

The CCF Deadlines API exposes 8 endpoints covering the full dataset from ccfddl.com, including conference titles, submission deadlines, CCF and CORE rankings, historical acceptance rates, and research category metadata. The get_upcoming_deadlines endpoint returns conferences sorted by next submission deadline, while get_conferences_by_multiple_filters lets you combine keyword, category, CCF rank, and CORE rank filters in a single request.

Conference Data and Rankings

The get_all_conferences endpoint returns every tracked conference with pagination via limit and offset parameters. Each conference object includes title (short name), description (full name), sub (category code), rank (an object with ccf, core, and thcpl rank strings), confs (an array of yearly editions with timelines, dates, and locations), acceptance_rates, and category_full. The get_conference_details endpoint retrieves the same structure for a single conference looked up by its short name — such as NeurIPS, AAAI, or VLDB — with case-insensitive matching.

Filtering and Search

get_conferences_by_rank filters by CCF rank values A, B, C, or Non-CCF. get_conferences_by_category accepts either a category code (AI, DB, SE, NW, etc.) or the full category name. search_conferences matches a keyword against title and description fields. For combined filtering, get_conferences_by_multiple_filters accepts a query string, comma-separated category codes, comma-separated ccf_rank values, and comma-separated core_rank values — all applied with AND logic.

Deadlines and Acceptance Rates

get_upcoming_deadlines returns only conferences with future submission deadlines, sorted ascending by next_deadline in ISO format. Each record includes title, description, rank, sub, category, and next_deadline. The get_conference_acceptance_rate endpoint retrieves historical acceptance statistics for a named conference, returning an array of records each containing year, submitted, accepted, rate, str, and source. Conferences without recorded acceptance data return an empty array for acceptance_rates.

Common use cases
  • Build a deadline tracker dashboard filtered by CCF rank A or B conferences relevant to a research group.
  • Compare historical acceptance rates across venues like NeurIPS, AAAI, and ICSE using the acceptance_rates array.
  • Generate a weekly digest of upcoming submission deadlines sorted by next_deadline from get_upcoming_deadlines.
  • Filter AI and DB category conferences with CORE rank A* for a targeted venue shortlist.
  • Populate a lab wiki with full yearly edition timelines and locations from the confs array in get_conference_details.
  • Search for conferences by keyword to discover venues in adjacent research areas by matching against title and description.
  • Analyze trends in submission volume over time using the submitted and accepted counts per year per conference.
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 ccfddl.com provide an official developer API?+
ccfddl.com does not publish an official developer API. The project is an open-source community tracker on GitHub (github.com/ccfddl/ccf-deadlines) that exposes data through its web interface only.
What does get_conferences_by_multiple_filters return, and how do the filters combine?+
The endpoint returns a total count and a conferences array. All filters you supply — query, category, ccf_rank, and core_rank — are applied with AND logic, so only conferences matching every specified criterion appear. Each filter is optional; you can supply one or several in a single request. Categories and ranks accept comma-separated values, e.g. category=AI,DB or ccf_rank=A,B.
Which ranking systems are included in the rank object?+
Each conference's rank object contains three fields: ccf (China Computer Federation rank: A, B, C, or empty), core (CORE rank: A*, A, B, C, or empty), and thcpl (THCPL rank string). Not every conference has a value for all three systems — missing ranks appear as empty strings.
Does the API expose individual paper metadata, author lists, or proceedings content?+
Not currently. The API covers conference-level data: deadlines, rankings, yearly edition timelines, locations, and aggregate acceptance statistics. Individual paper titles, abstracts, and author records are not included. You can fork this API on Parse and revise it to add an endpoint that targets paper-level data from a compatible source.
How fresh is the deadline and conference data?+
Data reflects what is published on ccfddl.com, which is community-maintained and updated as conference organizers announce new submission cycles. For conferences far out in the calendar year, deadline entries may not yet exist, which is why get_upcoming_deadlines only returns conferences that have a confirmed future deadline recorded.
Page content last updated . Spec covers 8 endpoints from ccfddl.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.