openaccess.thecvf.com APIopenaccess.thecvf.com ↗
Access CVPR, ICCV, and WACV papers via the CVF Open Access API. Browse conferences, search by keyword, retrieve abstracts, BibTeX, and GitHub links.
No input parameters required.
curl -X GET 'https://api.parse.bot/scraper/d3c41490-aa5f-41c1-b213-12c9d15d9910/list_conferences' \ -H 'X-API-Key: $PARSE_API_KEY'
List all available conferences and their sections (Main Conference, Workshops, Demos) from the CVF Open Access repository.
No input parameters required.
{
"type": "object",
"fields": {
"conferences": "array of objects with 'id' (conference identifier string) and 'name' (human-readable conference name with location and section)"
},
"sample": {
"data": {
"conferences": [
{
"id": "CVPR2024",
"name": "CVPR 2024, Seattle Washington - Main Conference"
},
{
"id": "CVPR2024_workshops/menu",
"name": "CVPR 2024, Seattle Washington - Workshops"
}
]
},
"status": "success"
}
}About the openaccess.thecvf.com API
The CVF Open Access API exposes 6 endpoints covering papers, workshops, and conferences from the Computer Vision Foundation repository at openaccess.thecvf.com. Use list_conference_papers to retrieve every paper from a given conference — including titles, authors, PDF URLs, arXiv links, and supplementary material — or call get_paper_detail to pull the full abstract, BibTeX citation, and any GitHub repository URLs embedded in the paper page.
Conference and Workshop Coverage
Start with list_conferences to retrieve all available conference identifiers (e.g. CVPR2024, ICCV2023, WACV2025) and their human-readable names, including section labels for main conference, workshops, and demos. Pass any conference_id to list_workshops to enumerate workshop identifiers such as NTIRE or WMF, then use list_workshop_papers with both conference_id and workshop_id to get the full paper list for that workshop.
Retrieving Papers
list_conference_papers accepts a required conference_id and an optional day parameter in YYYY-MM-DD format to filter by presentation day (pass 'all' to skip filtering). The response includes a total count and a papers array where each object carries title, authors, detail_url, pdf_url, arxiv_url, and supplementary_url. The same paper object shape is returned by list_workshop_papers and search_papers.
Search and Paper Details
search_papers accepts a query string and a conference_id. Matching is case-insensitive and runs against both paper titles and author names, returning the same paper array format with a total count. Note that the first search against a conference fetches the full paper list, so initial latency may be higher than subsequent calls.
get_paper_detail takes a url (the detail_url from any paper listing) and an optional arxiv_url. It returns title, abstract, authors, bibtex, pdf_url, emails, github_urls, and affiliations. Affiliations are typically empty because that data appears only inside the PDF, not on the detail page. Supplying arxiv_url augments github_urls and emails with data from the arXiv abstract page.
Source API Notes
The CVF Open Access repository at openaccess.thecvf.com does not publish an official developer API. All structured data returned here — paper metadata, abstracts, BibTeX entries, and links — is drawn from the public open-access pages of the repository.
- Build a literature-review tool that lets researchers search CVPR or ICCV papers by author name or keyword using
search_papers. - Automate BibTeX collection for a reference manager by calling
get_paper_detailfor each paper in a reading list. - Aggregate GitHub repository links from computer vision papers to track code-release rates across conferences.
- Compile a dataset of CVF workshop papers by conference year using
list_workshopsandlist_workshop_papers. - Monitor new WACV or CVPR proceedings as they appear by listing all papers with
list_conference_papersand comparing against a stored index. - Extract contact emails from paper pages to identify corresponding authors for survey outreach.
- Filter a conference's papers by presentation day to build a personalized schedule using the
dayparameter inlist_conference_papers.
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 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.
Does openaccess.thecvf.com have an official developer API?+
What does `get_paper_detail` return, and when should I pass an `arxiv_url`?+
title, abstract, authors, bibtex, pdf_url, emails, github_urls, and affiliations. Author affiliations are almost always empty because that information is only present inside the PDF. Passing an arxiv_url (from the arxiv_url field in any paper listing) supplements github_urls and emails with data from the corresponding arXiv abstract page.