Fresh Jobs Feed avatar

Fresh Jobs Feed

Pricing

from $0.25 / 1,000 results

Go to Apify Store
Fresh Jobs Feed

Fresh Jobs Feed

Freshness-ranked job listings powered by FreshContext DAR scoring.

Pricing

from $0.25 / 1,000 results

Rating

0.0

(0)

Developer

Immanuel Gabriel

Immanuel Gabriel

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

15 hours ago

Last modified

Share

Fresh Jobs Feed Apify Actor

Fresh Jobs Feed is a minimal Apify Actor wrapper around the deployed Fresh Jobs Feed Cloudflare Worker API:

https://fresh-jobs-feed.gimmanuel73.workers.dev

It does not scrape job boards and does not duplicate the Worker. It calls the live API, writes each returned job signal to the default Apify Dataset, and stores the full API response in the default Key-Value Store as OUTPUT.

Fresh Jobs Feed uses FreshContext DAR scoring:

rt_score = base_score * exp(-0.005 * age_hours)

AI/ML jobs are the default category and first marketable view.

Input

FieldTypeDefaultDescription
mode"feed", "fresh", or "remote""feed"Selects the live API endpoint.
category"ai", "engineering", "data", "remote", or "startup""ai"Category filter.
limitnumber10Number of job signals to return. Clamped to 1..100.
min_scorenumber0Minimum decay-adjusted rt_score.
source"all", "remotive", or "remoteok""all"Optional source filter.
remotebooleanfalseIf true, requests remote jobs only.
qstringemptyOptional keyword filter such as llm, python, rag, or mlops.
includeExplainbooleanfalseIf true, attaches /v1/jobs/explain/:id scoring details to each dataset item.

Example Input

{
"mode": "feed",
"category": "ai",
"limit": 10,
"min_score": 20,
"source": "all",
"remote": false,
"q": "llm",
"includeExplain": true
}

Example Dataset Item

{
"id": "remoteok:1131520",
"source": "remoteok",
"title": "Engineering Manager AI Fleet Management & Honk",
"company": "Spotify",
"location": "Remote",
"remote": true,
"url": "https://remoteOK.com/remote-jobs/example",
"salary": null,
"tags": ["manager", "ai", "engineering"],
"categories": ["ai", "engineering", "remote"],
"base_score": 80,
"rt_score": 55.4,
"age_hours": 73.1,
"published_at": "2026-05-08T16:00:00.000Z",
"fetched_at": "2026-05-11T17:22:48.811Z",
"mode": "feed",
"actor_fetched_at": "2026-05-11T18:00:00.000Z",
"source_api": "https://fresh-jobs-feed.gimmanuel73.workers.dev/v1/jobs/feed?category=ai&limit=10&min_score=20",
"explanation": {
"base_score": 80,
"lambda": 0.005,
"rt_score": 55.4,
"formula": "rt_score = base_score * exp(-0.005 * age_hours)",
"interpretation": "active"
}
}

The Key-Value Store OUTPUT record contains the normalized input, the full live API response, dataset item count, and generation timestamp.

Use Cases

  • AI job agents that need freshness-ranked openings.
  • Job search automation that wants fewer stale recommendations.
  • Career tools and recruiting workflows.
  • Startup talent monitoring.
  • Market intelligence for current hiring demand.

Local Run

Install dependencies:

$npm install

Run locally:

$apify run

Push to Apify

$apify push