3.3 KiB
Jobindex URL Reference
Base URL
https://www.jobindex.dk/jobsoegning
Full URL Pattern
https://www.jobindex.dk/jobsoegning/{category-group}/{category-slug}/{area-slug}?q={query}&jobage={days}&page={num}
All path segments and query params are optional. Category MUST come before area in the path.
Path Segments
Areas (geography)
Area slug goes at the end of the path:
| Area | Slug |
|---|---|
| Storkøbenhavn | storkoebenhavn |
| Københavnsområdet | storkoebenhavn |
| Nordsjælland | nordsjaelland |
| Sjælland | sjaelland |
| Fyn | fyn |
| Nordjylland | nordjylland |
| Midtjylland | midtjylland |
| Sydjylland | sydjylland |
| Bornholm | bornholm |
Note: If the exact slug is unknown, use the Geografi filter UI instead:
- Click the "Geografi" button
- Click "Tilføj område"
- Type city/region name in the textbox
- Select from autocomplete (treeitem)
- Click "Vis X job" button
- Note the URL path that results
Categories
Category uses a two-part path: {group}/{slug}:
| Category | Path |
|---|---|
| IT-drift og support | it/itdrift |
Note: Category slugs are not fully mapped. To discover a category slug:
- Click the "Kategorier" button
- Type category name in the search field
- Select from autocomplete (treeitem)
- Click "Vis X job" button
- Note the URL path that results
Query Parameters
| Parameter | Description | Examples |
|---|---|---|
q |
Search query | q=data+engineer (broad), q=%27data+engineer%27 (exact match) |
jobage |
Max age in days | jobage=1 (today), jobage=3, jobage=7, jobage=30 |
page |
Page number (1-indexed) | page=1, page=2 |
Examples
# Basic keyword search
playwright-cli goto "https://www.jobindex.dk/jobsoegning?q=python+developer"
# Exact match search (single quotes around query)
playwright-cli goto "https://www.jobindex.dk/jobsoegning?q=%27python+developer%27"
# Search in Storkøbenhavn area
playwright-cli goto "https://www.jobindex.dk/jobsoegning/storkoebenhavn?q=python+developer"
# Search with category + area
playwright-cli goto "https://www.jobindex.dk/jobsoegning/it/itdrift/storkoebenhavn?q=data+engineer"
# Last 7 days only
playwright-cli goto "https://www.jobindex.dk/jobsoegning?q=data+engineer&jobage=7"
# Page 2 of results
playwright-cli goto "https://www.jobindex.dk/jobsoegning?q=data+engineer&page=2"
# Everything combined
playwright-cli goto "https://www.jobindex.dk/jobsoegning/storkoebenhavn?q=data+engineer&jobage=7&page=1"
Filters Available via UI Only
These filters require clicking through the filter panel (not URL-constructable):
Ansættelsestype (Employment type): Fastansættelse, Tidsbegrænset, Studiejob, Graduate/trainee, Freelance, etc.
Arbejdstid (Working hours): Fuldtid, Deltid
Hjemmearbejde (Remote work): Muligt, Tilbydes ikke, 100% hjemmearbejde
To use these: click "Filtre" button → check desired options → click "Vis X job".
Job Card Extraction
CSS selectors for job cards: div.PaidJob, div.jix_robotjob
Each card contains:
- Title:
h4 a(text + href) - Company: first
alink text - Location: div after h4 (clean by removing "Se rejsetid")
- Posted date:
timeelement (format: DD-MM-YYYY) - Description:
pelements - Job URL:
h4 ahref (may be external or jobindex-hosted)
~20 results per page.