# Phdscanner — 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.

> Search and browse PhD opportunities and professor postings from PhDScanner.com to find programs that match your academic interests and career goals. Filter through detailed opportunity listings to compare research areas, institutions, and supervisors all in one place.

**Category:** Education | **Website:** [www.phdscanner.com/](https://www.phdscanner.com/) | **Docs:** [parse.bot/marketplace/213ba9dc-b996-4048-a231-62508f3c5c2d/phdscanner-com-api](https://parse.bot/marketplace/213ba9dc-b996-4048-a231-62508f3c5c2d/phdscanner-com-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-phdscanner-com-api-213ba9dc/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_opportunity

Get full details of a single PhD opportunity by its ID, including the complete HTML description, supervisor contact information, and application details.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `opportunity_id` | string | Yes | UUID of the PhD opportunity (from search_opportunities results). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-phdscanner-com-api-213ba9dc/get_opportunity \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"opportunity_id":"<string>"}'
```

### list_phd_postings

List PhD position postings shared by professors on LinkedIn. Returns professor details, university, department, and the post content.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Number of postings to return. |
| `offset` | integer | No | Pagination offset. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-phdscanner-com-api-213ba9dc/list_phd_postings \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":"<integer>","offset":"<integer>"}'
```

### search_opportunities

Search PhD opportunities with optional filters for country, university, and funding status. Returns paginated results sorted by most recent. Each result includes title, university, location, discipline, supervisor, funding details, and an AI-generated summary.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `country` | string | No | Filter by country name (e.g. Germany, Netherlands, United Kingdom, Switzerland, Australia). |
| `funded` | string | No | Filter for fully funded positions only. Pass 'true' to include only fully funded positions. |
| `limit` | integer | No | Number of results to return per page. |
| `offset` | integer | No | Pagination offset (number of results to skip). |
| `university` | string | No | Filter by university name (e.g. EPFL, University of Vienna, TU Dresden, Technical University of Munich). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-phdscanner-com-api-213ba9dc/search_opportunities \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"country":"<string>","funded":"<string>","limit":"<integer>","offset":"<integer>","university":"<string>"}'
```
