# No Fluff Jobs — 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 filter job openings from No Fluff Jobs by category, seniority level, location, and keywords to find IT, marketing, sales, and HR positions tailored to your needs. Retrieve detailed information about specific job postings including requirements, company details, and employment terms to help you make informed application decisions.

**Category:** Jobs | **Website:** [nofluffjobs.com/pl/?lang=en](https://nofluffjobs.com/pl/?lang=en) | **Docs:** [parse.bot/marketplace/4030d1ac-1bfd-4a4d-9a7d-5425e1dd48cc/nofluffjobs-com-api](https://parse.bot/marketplace/4030d1ac-1bfd-4a4d-9a7d-5425e1dd48cc/nofluffjobs-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-nofluffjobs-com-api-4030d1ac/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_job_details

Fetch full details for a single job posting by its slug. Returns comprehensive information including HTML description, daily tasks, requirements breakdown, salary per employment type, locations, methodology, and application options. The slug comes from the 'url' field of a JobSummary returned by search_jobs.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `job_id` | string | Yes | Job posting slug/ID from search_jobs results (the 'url' field, e.g., 'senior-c-developer-fixed-income-trading-stp-augmenta-remote'). |

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

### search_jobs

Full-text search and filtering of job postings. Supports category, seniority, city, keyword, employment type, country, and remote filters. Returns paginated results with job summaries. Each JobSummary exposes a navigation op to its full JobDetail. Paginates via integer page counter.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category` | string | No | Job category filter. Accepted values: 'marketing', 'fullstack', 'backend', 'frontend', 'mobile', 'testing', 'devops', 'project-manager', 'business-intelligence', 'business-analyst', 'hr', 'sales', 'customer-service', 'finance', 'erp'. Comma-separated for multiple. |
| `city` | string | No | City filter (e.g., 'Warszawa', 'Kraków', 'Wrocław', 'Poznań', 'Gdańsk'). |
| `country` | string | No | Country code filter (e.g., 'POL', 'DEU', 'GBR'). |
| `employment` | string | No | Employment type filter. Accepted values: 'b2b', 'permanent', 'zlecenie'. Comma-separated for multiple. |
| `keyword` | string | No | Keyword/skill filter (e.g., 'Python', 'Java', 'React'). Comma-separated for multiple. |
| `page` | integer | No | Page number (1-indexed). |
| `page_size` | integer | No | Number of results per page (max ~100). |
| `remote` | string | No | Set to 'remote' to filter for remote jobs only. |
| `seniority` | string | No | Seniority level filter. Accepted values: 'Junior', 'Mid', 'Senior', 'Expert'. Comma-separated for multiple. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-nofluffjobs-com-api-4030d1ac/search_jobs \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category":"<string>","city":"<string>","country":"<string>","employment":"<string>","keyword":"<string>","page":"<integer>","page_size":"<integer>","remote":"<string>","seniority":"<string>"}'
```
