Built In Jobs Scraper — US Tech & Startup Jobs avatar

Built In Jobs Scraper — US Tech & Startup Jobs

Pricing

from $0.70 / 1,000 job results

Go to Apify Store
Built In Jobs Scraper — US Tech & Startup Jobs

Built In Jobs Scraper — US Tech & Startup Jobs

Extract live US tech & startup jobs from Built In (builtin.com): software, data, product, design & sales roles. Records include title, company, remote/hybrid, structured salary (min/max/currency), skills, experience level, posted date & apply URL. Delta mode for alert bots.

Pricing

from $0.70 / 1,000 job results

Rating

0.0

(0)

Developer

Nomad Dev

Nomad Dev

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

2 days ago

Last modified

Categories

Share

Scrape current US tech and startup openings from Built In, including remote flags and salary bands where posted.

Claude / Codex skill to describe and setup this actor: SKILL.md

What Built In jobs data does this scraper extract?

Published postings follow nomad-agent-job-row-v1. The shared fields carry source identity, title and company, parsed locations, dates, the complete plain-text body when available, source markup when usable, and work type. Unavailable scalar facts are null; no parsed location is []. Source-only facts appear in versioned custom.data only when mapped there. See the Output example section for the exact dataset fields and diagnostic rows.

The Actor always fetches detail pages. includeDescription is accepted only as a legacy compatibility input and is ignored. Missing optional fields are null; records with no complete description are not emitted.

How to scrape Built In jobs with this Actor

  1. Click Try for free / Run — no login to the target site, no cookies, no proxies to configure.
  2. Pick job categories (or leave empty for the curated default in categoryPages — see Input below) and adjust maxItems.
  3. Run it and export the dataset as JSON, CSV or Excel, or read it over the API.

Run it from your own code:

from apify_client import ApifyClient
client = ApifyClient("<YOUR_APIFY_TOKEN>")
run = client.actor("nomad-agent/builtin-scraper").call(run_input={"maxItems": 50})
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
print(item["title"], "—", item["company"], item["url"])

Or a single HTTP call that runs the Actor and returns items in one response:

curl -X POST \
"https://api.apify.com/v2/acts/nomad-agent~builtin-scraper/run-sync-get-dataset-items?token=<YOUR_APIFY_TOKEN>" \
-H "Content-Type: application/json" \
-d '{"maxItems": 50}'

Input

FieldTypeDefaultNotes
categoriesarray (multi-select)(empty)Friendly Built In job categories to scrape — 21 verified categories including Software Engineering, Frontend, JavaScript, DevOps, Data & Analytics, Data Science, Machine Learning, Data Engineering, Product, Design, Marketing, Sales, Operations, HR, Finance, Legal, Content, Customer Success, Project Management, Cybersecurity + IT, and Internships. Leave empty to use the default shown in categoryPages below. Merges with categoryPages if both are set.
maxItemsinteger50Maximum number of listings to return across all category pages. Set to 0 for no limit.
maxPagesPerCategoryinteger1How many pagination pages to fetch per category URL. Page 1 is always fetched; subsequent pages use the ?page=N parameter.
includeDescriptionbooleantrueDeprecated compatibility input; ignored. The Actor always fetches detail pages and emits only records with a complete description.
postedWithinstringanyKeep only jobs published inside this window. Use any for no date filter, or a duration — 1h, 24h, 3d, 2w, 6m. Jobs the source published no date for are kept rather than dropped. Applied to the age parsed from each card's relative N Days Ago badge. Replaces postedWithinDays, still accepted for existing integrations.
categoryPages (Advanced)array/jobs/remote/dev-engineering/front-end, /jobs/remote/dev-engineering/javascript, /jobs/remote/data-analytics/machine-learning, /jobs/remote/dev-engineering/devops, /jobs/remote/data-analytics/data-engineeringLegacy/low-level form: raw Built In category page paths or full URLs. Pre-filled with this Actor's actual default coverage (previously a hidden code-level default with no UI visibility) so you can see and edit exactly what a default run fetches. Prefer categories for common cases; use this for one-off or niche categories not covered by the enum. Merges with categories, doesn't replace it.
cacheTtlSeconds (Advanced)integer1800Reuse a page fetched this many seconds ago instead of hitting builtin.com again on rapid re-runs. Set 0 to always fetch live.

Output example

Every row follows nomad-agent-job-row-v1, the one shape shared by all of this fleet's job Actors. A row carries every field; null means the source did not publish that fact, and locations: [] means no usable location was parsed from the posting. Nothing is guessed.

{
"schemaVersion": "nomad-agent-job-row-v1",
"recordType": "posting",
"source": "builtin",
"id": "a1b2c3",
"url": "https://example.com/builtin/jobs/a1b2c3",
"title": "Senior Backend Engineer",
"company": "Example Company",
"locations": [
"Bilbao",
"Spain"
],
"postedAt": "2026-09-02T00:00:00Z",
"deadline": "2026-10-15",
"description": "The complete posting body as plain text, exactly as the source published it — never truncated.",
"descriptionHtml": "<p>The complete posting body as the source's own markup.</p>",
"workType": "remote",
"custom": {
"schemaId": "nomad-agent-job-custom-builtin-v1",
"data": {
"skills": "…",
"industries": "…"
}
}
}
FieldMeaning
schemaVersionAlways "nomad-agent-job-row-v1".
recordType"posting" for a job, "diagnostic" for a row reporting something about the run itself.
sourceWhich job source the posting came from, from the collector registry's vocabulary — not the Actor name.
idStable identifier for the posting within source.
urlCanonical public URL of the posting on the source site.
titleJob title exactly as the source publishes it, untruncated.
companyEmployer name as published.
locationsPlaces the role is based, most specific first — e.g. ["Bilbao", "Spain"].
postedAtWhen the source published the posting, ISO-8601 UTC (YYYY-MM-DDTHH:MM:SSZ).
deadlineClosing date for applications as an ISO-8601 calendar date (YYYY-MM-DD).
descriptionThe complete posting body as plain text — never truncated, never summarised.
descriptionHtmlThe posting body as the source's own markup, preserving lists, headings and links.
workTypeWorking arrangement: "remote", "hybrid" or "onsite".
customFacts only this source publishes, as {"schemaId", "data"}.

A run also emits diagnostic rows — recordType: "diagnostic" with a warnings array — when it has something to report, such as a source returning nothing. They are never billed and are easy to filter out on recordType.

Integrations

Export the dataset as JSON, CSV or Excel from the Console, pull it over the Apify API (including run-sync-get-dataset-items for a single blocking call), wire it into Make/Zapier/n8n, or drive it from an AI agent via the Apify MCP server.

Pricing

Pay per event: $0.005 per Actor start and $0.0009 per job returned. 100 jobs ≈ $0.095. No subscription, no rental — you pay only for what you fetch.

Use cases

  • US tech job boards and alert bots
  • Startup-hiring market research
  • Sourcing pipelines for US tech roles
  • Salary benchmarking by city

FAQ

Is it legal to scrape Built In jobs? This Actor reads only publicly available job postings — data any visitor can see without logging in. No personal data behind authentication is touched. Review the target site's terms and your local regulations for your specific use case.

Do I need an account on the target site? No. Postings are fetched from public pages/APIs — no login, cookies or session tokens.

How fresh is the data? Every run fetches live listings. Results are cached for cacheTtlSeconds (default 30 min, set 0 to always hit the source live).

How many jobs can I get? maxItems caps the run (set 0 where supported for no cap). Most sources paginate from newest to oldest.

What's the difference between categories and categoryPages? categories is a friendly multi-select of common Built In job categories — pick from a list, no need to know the site's internal URL structure. categoryPages (Advanced) is the raw underlying mechanism: literal Built In category page paths or URLs, for categories not covered by the friendly list. Both feed the same fetch and can be combined.

Something broken or missing? Open an issue on the Actor's Issues tab — it is monitored and reliability fixes ship fast.


From the maker of Oink — an open-source, AI-powered job-search bot for Telegram that runs on these Actors. Try the free bot, get a managed instance at oinkjobsearch.com, or browse the full catalog of 50+ Actors.