StepStone Jobs Scraper
Pricing
$8.00 / 1,000 job scrapeds
StepStone Jobs Scraper
Extract job listings from StepStone, Germany's largest job board, by keyword and location. Get job title, company name, city, salary, employment type, posting date and direct apply link as clean JSON records. No login or API key needed. Failed runs are not billed.
Pricing
$8.00 / 1,000 job scrapeds
Rating
0.0
(0)
Developer
Antony Zaikin
Maintained by CommunityActor stats
0
Bookmarked
2
Total users
1
Monthly active users
8 days ago
Last modified
Categories
Share
Apify actor that scrapes job listings from StepStone.de, Germany's largest job board, by keyword and location — no login, no API key, no headless browser.
How it works
- Fetches the StepStone search results page (
https://www.stepstone.de/jobs/<query>/in-<location>) for the givenqueryandlocation, paginating with?page=N. - The list page is plain server-rendered HTML with a JSON array of job records embedded directly in it — the actor extracts that array without any JS execution.
- For each job on the list, the actor also fetches the job's own detail page and reads its
schema.org/JobPostingJSON-LD block to fill inemploymentTypeand, when available, a disclosed salary. - Stops after pushing
maxItemsjobs (default 30) or when StepStone runs out of results for the query. - For every successfully pushed record the actor charges the
job-scrapedevent ($0.008per record). - A short delay is kept between requests to be polite to the source and to reduce proxy-ban risk.
Input
| Field | Type | Default | Description |
|---|---|---|---|
query | string | "Softwareentwickler" | Job title or keyword to search for on StepStone.de. |
location | string | "" | City or region to filter by. Leave empty to search all of Germany. |
maxItems | integer | 30 | Maximum number of job listings to return. |
proxyConfiguration | object | Apify residential proxy | Proxy configuration used for all requests. |
All fields have editors and working defaults, as required by the platform — running the actor with no input at all returns real job listings.
Output
Each record contains:
jobId– integertitle– stringcompanyName– stringcompanyUrl– string | nulllocation– string (may list several cities for multi-location postings)salary– string | null (Germany rarely discloses salary in listings, so this isnullmost of the time)employmentType– string | null, e.g.FULL_TIME,PART_TIME,CONTRACTOR,INTERN(schema.org JobPosting values)datePosted– ISO-8601 string | nullurl– absolute link to the job postingscrapedAt– ISO-8601 timestamp of when the record was processed
Example
{"query": "Data Engineer","location": "Berlin","maxItems": 50}
Returns up to 50 Data Engineer listings in Berlin.
Notes
- Job detail pages sometimes disappear between the list page render and the actor's follow-up request (already-filled or delisted positions). Those are not treated as a source block — the actor logs a warning and falls back to the fields already known from the list page.
- The actor distinguishes a genuine zero-result search (StepStone reports a total count of 0) from an anti-bot block (missing expected page markers or a 403/429/5xx status), and only fails the run in the latter case.
- Network errors and rate-limit responses are retried with exponential backoff (up to 3 attempts) before the run fails.