# Submit Hematology — 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.

> Browse sessions, presentations, and abstracts from the ASH Annual Meeting program to discover hematology research, including detailed information about authors, institutions, topics, and research categories. Search through the complete program to find specific presentations and access comprehensive research abstracts organized by session.

**Category:** Healthcare | **Website:** [submit.hematology.org/program?is_sponsored=0&is_highlighted=0&is_on_demand=0&streaming_allowed=0&filterbox=false&legendbox=false&timezone=false&pre_filter=All&viewType=list&segment=programme&segmentname=&upcoming=0&order=starts_at](https://submit.hematology.org/program?is_sponsored=0&is_highlighted=0&is_on_demand=0&streaming_allowed=0&filterbox=false&legendbox=false&timezone=false&pre_filter=All&viewType=list&segment=programme&segmentname=&upcoming=0&order=starts_at) | **Docs:** [parse.bot/marketplace/1fa18f09-e8cf-4a5c-8cc5-5ea34f5d5fe0/submit-hematology-org-api](https://parse.bot/marketplace/1fa18f09-e8cf-4a5c-8cc5-5ea34f5d5fe0/submit-hematology-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-submit-hematology-org-api-1fa18f09/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_abstracts

List abstracts from the ASH Annual Meeting program with pagination and optional keyword search. Each abstract includes title, ref ID, publication number, abstract URL, authors with credentials and affiliations, topic, categories, and optional session relationship. Results are ordered by publication number ascending. Paginates via integer page counter.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number for pagination. |
| `per_page` | integer | No | Number of results per page (max 100). |
| `query` | string | No | Search query to filter abstracts by keyword (e.g. disease name, drug, author). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-submit-hematology-org-api-1fa18f09/get_abstracts \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"page":"<integer>","per_page":"<integer>","query":"<string>"}'
```

### get_presentations

List presentations from the ASH Annual Meeting program with pagination and optional keyword search. Each presentation includes its parent session relationship, authors with affiliations, content type, topic, and categories. Results are ordered by start time ascending. Paginates via integer page counter.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number for pagination. |
| `per_page` | integer | No | Number of results per page (max 100). |
| `query` | string | No | Search query to filter presentations by keyword. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-submit-hematology-org-api-1fa18f09/get_presentations \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"page":"<integer>","per_page":"<integer>","query":"<string>"}'
```

### get_session_detail

Get detailed information about a specific session by its manage_id. Returns full session info including HTML description, chairs with names and credentials, and all nested presentations with their authors, descriptions, and time slots. The manage_id is available from get_sessions results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `manage_id` | string | Yes | The manage_id of the session (available from get_sessions results as manage_id field). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-submit-hematology-org-api-1fa18f09/get_session_detail \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"manage_id":"<string>"}'
```

### get_sessions

List sessions from the ASH Annual Meeting program with pagination and optional keyword search. Returns session details including title, times, location/room, session type, tags, chairs, and groups. Results are ordered by start time ascending. Paginates via integer page counter.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number for pagination. |
| `per_page` | integer | No | Number of results per page (max 100). |
| `query` | string | No | Search query to filter sessions by keyword. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-submit-hematology-org-api-1fa18f09/get_sessions \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"page":"<integer>","per_page":"<integer>","query":"<string>"}'
```
