# Nvidia Wd5 Myworkdayjobs — 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 current NVIDIA job openings by title, location, and department, then retrieve detailed information about specific positions including requirements and application details. Provides real-time access to available roles across the company.

**Category:** Jobs | **Website:** [nvidia.wd5.myworkdayjobs.com/en-US/NVIDIAExternalCareerSite](https://nvidia.wd5.myworkdayjobs.com/en-US/NVIDIAExternalCareerSite) | **Docs:** [parse.bot/marketplace/67ae1dbd-2bb4-4844-a028-823eacdbdd8e/nvidia-wd5-myworkdayjobs-com-api](https://parse.bot/marketplace/67ae1dbd-2bb4-4844-a028-823eacdbdd8e/nvidia-wd5-myworkdayjobs-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-nvidia-wd5-myworkdayjobs-com-api-67ae1dbd/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_job_details

Get full details for a specific NVIDIA job posting including description, requirements, and application URL. Requires a numeric position ID obtained from search_jobs results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `position_id` | string | Yes | Numeric position ID from search_jobs results (the 'id' field, e.g. '893392590814') |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-nvidia-wd5-myworkdayjobs-com-api-67ae1dbd/get_job_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"position_id":"<string>"}'
```

### search_jobs

Search NVIDIA job listings by keyword, location, and filters. Returns paginated results with 10 jobs per page. Pagination advances via the start offset in increments of 10. Each job summary includes identifiers, title, locations, department, and work type.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category` | string | No | Job category filter (e.g. 'engineering', 'sales', 'marketing') |
| `location` | string | No | Location filter (e.g. 'Santa Clara', 'California') |
| `location_type` | string | No | Work location type filter: 'onsite', 'remote', or 'remote_local' |
| `query` | string | No | Search keyword (e.g. 'software engineer', 'data scientist') |
| `start` | integer | No | Pagination offset (0-based, increments of 10) |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-nvidia-wd5-myworkdayjobs-com-api-67ae1dbd/search_jobs \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category":"<string>","location":"<string>","location_type":"<string>","query":"<string>","start":"<integer>"}'
```
