Discover/Thecvf API
live

Thecvf 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.

Endpoint health
verified 6d ago
list_conference_papers
search_papers
list_workshops
list_workshop_papers
list_conferences
6/6 passing latest checkself-healing
Endpoints
6
Updated
22d ago

What is the Thecvf 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.

Try it

No input parameters required.

api.parse.bot/scraper/d3c41490-aa5f-41c1-b213-12c9d15d9910/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/d3c41490-aa5f-41c1-b213-12c9d15d9910/list_conferences' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace openaccess-thecvf-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""CVF Open Access API — discover conferences, search papers, drill into details."""
from parse_apis.cvf_open_access_api import CVF, PaperNotFound

client = CVF()

# List conferences — each has id and name
for conf in client.conferences.list(limit=5):
    print(conf.id, conf.name)

# Construct a conference by id, then search its papers
cvpr = client.conference(id="CVPR2024")
paper = cvpr.papers.search(query="transformer", limit=1).first()

if paper:
    print(paper.title, paper.authors)

    # Drill into the full paper detail (abstract, bibtex, github links)
    try:
        detail = paper.details()
        print(detail.abstract[:120], detail.pdf_url)
    except PaperNotFound as exc:
        print(f"Paper gone: {exc}")

# List workshops for the conference, then fetch workshop papers
workshop = cvpr.workshops.list(limit=1).first()
if workshop:
    print(workshop.id, workshop.name)
    for wp in workshop.papers.list(limit=3):
        print(wp.title, wp.pdf_url)

print("exercised: conferences.list / papers.search / paper.details / workshops.list / workshop.papers.list")
All endpoints · 6 totalmissing one? ·

List all available conferences and their sections (Main Conference, Workshops, Demos) from the CVF Open Access repository. Returns the full catalog of conferences from 2013 to present, each with a unique identifier and human-readable name including location and section type.

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "conferences": "array of conference objects with id and name"
  },
  "sample": {
    "data": {
      "conferences": [
        {
          "id": "CVPR2024",
          "name": "CVPR 2024, Seattle Washington - Main Conference"
        },
        {
          "id": "ICCV2023",
          "name": "ICCV 2023, Paris France - Main Conference"
        }
      ]
    },
    "status": "success"
  }
}

About the Thecvf API

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.

Reliability & maintenanceVerified

The Thecvf API is a managed, monitored endpoint for openaccess.thecvf.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when openaccess.thecvf.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official openaccess.thecvf.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
6d ago
Latest check
6/6 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • 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_detail for 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_workshops and list_workshop_papers.
  • Monitor new WACV or CVPR proceedings as they appear by listing all papers with list_conference_papers and 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 day parameter in list_conference_papers.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 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 openaccess.thecvf.com have an official developer API?+
No. The CVF Open Access repository at openaccess.thecvf.com does not offer a public developer API or documented data endpoint. This Parse API provides structured access to the same public paper metadata.
What does `get_paper_detail` return, and when should I pass an `arxiv_url`?+
It returns 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.
Does the API cover citation counts, download statistics, or paper rankings?+
Not currently. The API covers paper metadata, abstracts, BibTeX citations, PDF links, arXiv links, supplementary URLs, and embedded GitHub or email links. Citation counts and download statistics are not available on the CVF Open Access pages. You can fork the API on Parse and revise it to add an endpoint that pulls citation data from a separate source such as Semantic Scholar.
Can I retrieve papers from conferences outside the CVF portfolio, such as NeurIPS or ICML?+
Not currently. The API covers only conferences published in the CVF Open Access repository, including CVPR, ICCV, and WACV. You can fork the API on Parse and revise it to add endpoints targeting other open-access proceedings repositories.
Why might `search_papers` be slower on the first call for a conference?+
The endpoint retrieves all papers for the specified conference before filtering by the query string. For large conferences like CVPR with thousands of papers, this initial fetch takes longer. Subsequent searches against the same conference are faster once the paper list has been loaded.
Page content last updated . Spec covers 6 endpoints from openaccess.thecvf.com.
Related APIs in EducationSee all →
iclr.cc API
Search ICLR conference papers by keyword and browse accepted papers across different presentation formats (oral and poster), while accessing detailed paper metadata and conference information. Explore papers from multiple conference years and workshops to find research relevant to your interests.
ccfddl.com API
Access computer science conference deadlines, rankings, and acceptance rates across all CCF and CORE categories. Search and filter conferences by name, rank, or research area to explore venues and submission timelines.
vldb.org API
Access VLDB conference schedules, workshop agendas, keynote speaker details, and PVLDB journal paper abstracts and metadata across multiple volumes. Search and browse research papers, plan your conference attendance, and discover key presentations all in one place.
confex.com API
Access detailed conference schedules, presenter information, and session details from Confex-hosted events, including the ability to browse conferences, search sessions by day or topic, and view speaker profiles. Find specific papers, track meeting calendars, and discover available symposia all in one place.
openalex.org API
Search and retrieve millions of academic papers, articles, and books from OpenAlex's comprehensive global research catalog to find scholarly works by topic, author, or citation. Discover detailed information about research publications including metadata, abstracts, and citation counts to stay current with academic literature in your field.
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.
ieeexplore.ieee.org API
Search for scientific papers and retrieve their metadata, abstracts, references, and citations from IEEE Xplore's collection of journals and conferences. Look up author profiles, browse journals, and access paper details and full text sections all programmatically.
roboflow.com API
Search and explore over 200,000 open-source computer vision datasets on Roboflow Universe. Access detailed metadata — including image counts, class labels, and version info — to find the right dataset for any vision model training project.