# Jobs Ams — 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 job listings from Austria's AMS alle jobs platform with advanced filtering options. View detailed job information, explore featured categories including green jobs and apprenticeships, and retrieve autocomplete suggestions for job titles. Access real-time job data filtered by location, employment type, working hours, education level, and more.

**Category:** Jobs | **Website:** [jobs.ams.at/](https://jobs.ams.at/) | **Docs:** [parse.bot/marketplace/396e89cf-72be-46e0-be71-8339666849ae/jobs-ams-at-api](https://parse.bot/marketplace/396e89cf-72be-46e0-be71-8339666849ae/jobs-ams-at-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-jobs-ams-at-api-396e89cf/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_apprenticeship_jobs

Convenience endpoint to get apprenticeship (Lehrstelle) positions.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `location` | string | No | Location filter |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-jobs-ams-at-api-396e89cf/get_apprenticeship_jobs \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"location":"<string>"}'
```

### get_featured_job_categories

Get featured job categories/curated searches shown on the homepage.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-jobs-ams-at-api-396e89cf/get_featured_job_categories \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_green_jobs

Convenience endpoint to get only Green Jobs.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `location` | string | No | Location filter |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-jobs-ams-at-api-396e89cf/get_green_jobs \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"location":"<string>"}'
```

### get_job_detail

Get full details for a specific job by its UUID.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `uuid` | string | Yes | Unique identifier of the job listing |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-jobs-ams-at-api-396e89cf/get_job_detail \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"uuid":"<string>"}'
```

### get_suggestions

Get job title autocomplete suggestions based on a search prefix. Returns matching job titles from the AMS job database. Useful for building search interfaces with typeahead functionality.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `count` | integer | No | Maximum number of suggestions to return |
| `query` | string | Yes | Search prefix for job titles (e.g. 'Software', 'Koch', 'Lehrer') |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-jobs-ams-at-api-396e89cf/get_suggestions \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"count":"<integer>","query":"<string>"}'
```

### search_jobs

Search for job listings with various filters.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `education` | string | No | Education level filter (e.g. 'P*' for Pflichtschule, 'U*' for University) |
| `employment_relationship` | string | No | Employment type (AA=Arbeiter/Angestellte, LS=Lehrstelle, SS=Saison, FS=Ferial, SB=Sonstige) |
| `green_job` | boolean | No | Filter for Green Jobs only |
| `job_offer_types` | string | No | Comma-separated list of job offer sources (AMS, SB_WKO, IJ, BA, BZ, TN) |
| `location` | string | No | Location (City, Postal Code, or State) |
| `page` | integer | No | Page number for pagination |
| `page_size` | integer | No | Number of results per page |
| `period` | string | No | Time period (ALL, 1, 2, 7, 30 days) |
| `query` | string | No | Search keyword (job title, skill, or company) |
| `radius` | integer | No | Search radius in km around location |
| `sort_field` | string | No | Sort field (_SCORE for relevance, DATE for date) |
| `working_time` | string | No | Working hours (VZ=Fulltime, TZ=Parttime) |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-jobs-ams-at-api-396e89cf/search_jobs \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"education":"<string>","employment_relationship":"<string>","green_job":"<boolean>","job_offer_types":"<string>","location":"<string>","page":"<integer>","page_size":"<integer>","period":"<string>","query":"<string>","radius":"<integer>","sort_field":"<string>","working_time":"<string>"}'
```
