# Vldb — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

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

**Category:** Education | **Website:** [vldb.org/](https://vldb.org/) | **Docs:** [parse.bot/marketplace/19e2d378-e1f2-4dec-b10c-990cb0c4bad4/vldb-org-api](https://parse.bot/marketplace/19e2d378-e1f2-4dec-b10c-990cb0c4bad4/vldb-org-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-vldb-org-api-19e2d378/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_conference_list

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.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-vldb-org-api-19e2d378/get_conference_list \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_keynote_speakers

Returns information about keynote speakers for a given year, including talk titles, speaker bios, abstracts, and time slots. Currently only year 2024 has keynote data available; other years may return an upstream error.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `year` | string | No | Conference year. Currently only '2024' is confirmed to return keynote data. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-vldb-org-api-19e2d378/get_keynote_speakers \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"year":"<string>"}'
```

### get_main_conference_schedule

Returns the main conference schedule for a given year, including research sessions, their chairs, time slots, and listed papers with authors. Currently only year 2024 has schedule data available; other years may return an empty schedule array.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `year` | string | No | Conference year. Currently only '2024' is confirmed to return schedule data. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-vldb-org-api-19e2d378/get_main_conference_schedule \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"year":"<string>"}'
```

### get_paper_abstract

Returns the abstract and metadata for a specific paper in a PVLDB volume. The title must match exactly as listed in the volume. Returns title, authors, abstract text, PDF URL (if available), and BibTeX citation (if available).

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `title` | string | Yes | Full exact title of the paper as listed in the PVLDB volume. |
| `vol` | string | No | PVLDB volume number (e.g. '15', '16', '17'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-vldb-org-api-19e2d378/get_paper_abstract \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"title":"<string>","vol":"<string>"}'
```

### get_pvldb_volume

Returns metadata and paper listings for a specific PVLDB volume, grouped by issue number. Each paper includes title, authors, page range, and PDF URL. Confirmed working for volumes 15, 16, and 17.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `vol` | string | No | PVLDB volume number (e.g. '15', '16', '17'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-vldb-org-api-19e2d378/get_pvldb_volume \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"vol":"<string>"}'
```

### get_workshop_schedule

Returns the workshop schedule for a given year. Each workshop entry includes the day, title, external URL, and organizers. Confirmed working for years 2022, 2023, and 2024.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `year` | string | No | Conference year (e.g. '2022', '2023', '2024'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-vldb-org-api-19e2d378/get_workshop_schedule \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"year":"<string>"}'
```
