Discover/VLDB API
live

VLDB APIvldb.org

Access VLDB conference schedules, workshop agendas, keynote speaker details, and PVLDB journal paper abstracts and metadata via a clean REST API.

Endpoint health
verified 4d ago
get_conference_list
get_main_conference_schedule
get_pvldb_volume
get_keynote_speakers
get_workshop_schedule
6/6 passing latest checkself-healing
Endpoints
6
Updated
26d ago

What is the VLDB API?

The VLDB.org API exposes 6 endpoints covering conference schedules, workshop agendas, keynote speaker details, and PVLDB journal paper metadata. With get_paper_abstract you can retrieve full abstract text, author lists, BibTeX citations, and PDF URLs for papers across volumes 15–17. get_main_conference_schedule returns session-level data including session chairs, times, and paper lists. Together the endpoints cover the major programmatic needs for navigating VLDB conference and journal content.

Try it

No input parameters required.

api.parse.bot/scraper/474f30d3-111c-40f4-8c37-21f26b332b90/<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/474f30d3-111c-40f4-8c37-21f26b332b90/get_conference_list' \
  -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 vldb-org-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.

from parse_apis.vldb_conference___pvldb_journal_api import VLDB, Conference, Session, Workshop, Volume, PaperDetail, Keynote, Year, Vol

vldb = VLDB()

# List all VLDB conferences
for conf in vldb.conferences.list():
    print(conf.name, conf.url)

# Get the 2024 main conference schedule
for session in vldb.sessions.list(year=Year._2024):
    print(session.session_id, session.session_name, session.time)
    for paper in session.papers:
        print(paper.title, paper.authors)

# Browse workshops for 2022
for workshop in vldb.workshops.list(year=Year._2022):
    print(workshop.title, workshop.day, workshop.organizers)

# Get keynote speakers for 2024
for keynote in vldb.keynotes.list(year=Year._2024):
    print(keynote.talk_title, keynote.speaker_info, keynote.time)

# Fetch a specific PVLDB volume
vol = vldb.volumes.get(vol=Vol._17)
print(vol.volume)
for issue in vol.issues:
    print(issue.issue_number)
    for paper in issue.papers:
        print(paper.title, paper.authors, paper.pages)

# Look up a paper's abstract by exact title
detail = vldb.paperdetails.get(title="DecLog: Decentralized Logging in Non-Volatile Memory for Time Series Database Systems", vol=Vol._17)
print(detail.title, detail.authors, detail.abstract)
All endpoints · 6 totalmissing one? ·

Returns a list of all known VLDB conferences with their names and URLs, as listed on the VLDB Endowment homepage sidebar. Each conference entry includes the year, host city, and a link to its dedicated page.

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "conferences": "array of conference objects each containing name and url"
  },
  "sample": {
    "data": {
      "conferences": [
        {
          "url": "https://vldb.org/conference.html",
          "name": "List of Conferences"
        },
        {
          "url": "https://vldb.org/2026/",
          "name": "2026 Boston"
        },
        {
          "url": "https://vldb.org/2025/",
          "name": "2025 London"
        },
        {
          "url": "https://vldb.org/2024/",
          "name": "2024 Guangzhou"
        }
      ]
    },
    "status": "success"
  }
}

About the VLDB API

Conference Schedule and Workshop Data

get_main_conference_schedule accepts a year parameter (currently confirmed for 2024) and returns a schedule array of session objects, each carrying session_id, session_name, session_chair, time, and a papers array. get_workshop_schedule works for years 2022, 2023, and 2024, returning a workshops array where each entry includes day, title, url, and organizers. Use get_conference_list with no parameters to enumerate all known VLDB conference entries — each result includes a name and url.

PVLDB Journal Paper Metadata

get_pvldb_volume accepts a vol parameter (confirmed for volumes 15, 16, and 17) and returns an issues array. Each issue object contains an issue_number and a papers array listing the papers in that issue. To drill into a specific paper, call get_paper_abstract with both vol and the exact paper title as listed in the volume. The response includes abstract, authors (comma-separated), bibtex, and pdf_url. Note that title must match exactly — partial or fuzzy titles will not resolve.

Keynote Speaker Information

get_keynote_speakers accepts a year parameter, currently confirmed for 2024. Each item in the returned keynotes array includes keynote_id, time, talk_title, speaker_info, abstract, and bio. For years other than 2024, the endpoint may return an upstream error rather than an empty result, so applications should handle error responses gracefully when querying other years.

Reliability & maintenanceVerified

The VLDB API is a managed, monitored endpoint for vldb.org — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when vldb.org 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 vldb.org 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
4d 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 conference attendance planner using session times and chairs from get_main_conference_schedule.
  • Index PVLDB paper abstracts across volumes 15–17 for a database research search tool.
  • Auto-generate BibTeX reference lists by calling get_paper_abstract for a set of paper titles.
  • Display keynote speaker bios and talk abstracts on a conference companion app using get_keynote_speakers.
  • Aggregate workshop organizer and schedule data across years 2022–2024 for longitudinal analysis.
  • Populate a PDF link directory by extracting pdf_url fields from PVLDB paper metadata.
  • Track author publication activity across PVLDB volumes by collecting authors fields from multiple volume queries.
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 VLDB.org provide an official developer API?+
VLDB.org and the PVLDB portal do not publish an official public developer API. There is no documented REST or GraphQL interface available directly from vldb.org or pvldb.org for programmatic access to this data.
What does `get_paper_abstract` return, and how strict is the title matching?+
get_paper_abstract returns the paper's abstract, comma-separated authors, bibtex citation string, and pdf_url. The title input must exactly match the paper title as listed in the specified PVLDB volume — whitespace and punctuation variations will cause the lookup to fail. The vol parameter must also correspond to a confirmed volume (15, 16, or 17).
Which years have confirmed schedule and keynote data?+
Session-level schedule data via get_main_conference_schedule is confirmed only for year 2024. Workshop data is confirmed for 2022, 2023, and 2024. Keynote data via get_keynote_speakers is confirmed only for 2024; querying other years may return an error rather than an empty result.
Does the API support searching papers by author name or keyword?+
Not currently. The API retrieves papers by volume via get_pvldb_volume or by exact title via get_paper_abstract; there is no search-by-author or keyword filter endpoint. You can fork this API on Parse and revise it to add a search or filter endpoint over the paper metadata.
Are VLDB volumes older than volume 15 available?+
Volumes 15, 16, and 17 are confirmed working via get_pvldb_volume. Older volumes are not confirmed and may return incomplete or empty results. You can fork this API on Parse and revise it to test and add support for earlier PVLDB volumes.
Page content last updated . Spec covers 6 endpoints from vldb.org.
Related APIs in EducationSee all →
openaccess.thecvf.com API
Search and browse computer vision research papers from major conferences like CVPR, ICCV, and WACV, including detailed metadata and author information. Find papers by conference, workshop, keyword, or author to discover the latest open access research in computer vision.
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.
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.
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.
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.
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.
vedabase.io API
vedabase.io API
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.