# Novartis — 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 Novartis job openings across different locations, divisions, and job functions. Get detailed information about specific positions including requirements, responsibilities, and application details.

**Category:** Jobs | **Website:** [novartis.com/](https://novartis.com/) | **Docs:** [parse.bot/marketplace/88614cc5-f1ab-421c-9a71-fc2f74f115c3/novartis-com-api](https://parse.bot/marketplace/88614cc5-f1ab-421c-9a71-fc2f74f115c3/novartis-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-novartis-com-api-88614cc5/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_job_details

Retrieve full details of a specific Novartis job posting by its URL. Returns the requisition ID, title, full description text, and the direct Workday application URL. Each job page is language-specific; the URL suffix determines the locale of the returned description.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `url` | string | Yes | The direct URL to the job detail page on novartis.com (e.g. https://www.novartis.com/careers/career-search/job/details/req-10078991-data-scientist-fr-fr). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-novartis-com-api-88614cc5/get_job_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"url":"<string>"}'
```

### list_job_divisions

List all available division filter options for the Novartis career search. Each entry provides a human-readable division name and the code to pass as the division parameter in search_jobs. The list is exhaustive — every code the search accepts is returned here.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-novartis-com-api-88614cc5/list_job_divisions \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### list_job_functions

List all available functional area filter options for the Novartis career search. Each entry provides a human-readable name and the code to pass as the functional_area parameter in search_jobs. The list is exhaustive — every code the search accepts is returned here.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-novartis-com-api-88614cc5/list_job_functions \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### list_job_locations

List all available country/location filter options for the Novartis career search. Each entry provides a human-readable country name and the code to pass as the country parameter in search_jobs. The list is exhaustive — every code the search accepts is returned here.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-novartis-com-api-88614cc5/list_job_locations \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### search_jobs

Search Novartis job openings with optional keyword and filter parameters. Returns a paginated list of matching positions. Filters (country, division, functional_area) accept codes from the corresponding list_job_* endpoints. Combinations narrow results — no jobs may match all criteria simultaneously. Results are ordered by posted date descending. Each page returns up to 10 jobs.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `country` | string | No | Country/location filter code as returned by list_job_locations (e.g. LOC_BR for Brazil, LOC_US for USA). |
| `division` | string | No | Division filter code as returned by list_job_divisions (e.g. DIV_ON for Oncology, DIV_PH for Pharma). |
| `functional_area` | string | No | Functional area filter code as returned by list_job_functions (e.g. FCT_SA for Sales, FCT_RD for Research & Development). |
| `page` | integer | No | Page number (0-indexed). |
| `posted_date` | string | No | Date filter. Accepted values: All, 1 (Today), 2 (This Week), 3 (Last Two Weeks), 4 (This Month). |
| `query` | string | No | Keyword search term matched against job title and description. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-novartis-com-api-88614cc5/search_jobs \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"country":"<string>","division":"<string>","functional_area":"<string>","page":"<integer>","posted_date":"<string>","query":"<string>"}'
```
