Google hiring-trend tracking
Mit Google Careers-Endpunkten verwandelst du google hiring-trend tracking in wiederholbare API-Requests mit dokumentierten Inputs und JSON-Antworten.
Search Google's own careers site (careers.google.com) — by keyword and free-text location — and get a single posting by id, as structured JSON. Distinct from Crawlora's Google Jobs API, which scrapes Google Search's job-results feature rather than Google-the-employer's own board.
Search Google's own careers site (careers.google.com) by keyword and location and get one posting by id, as structured JSON.
Endpunkt-Familien
2
Dokumentierte Parameter
6
Beispiele
2
Live-Katalog-Snapshot
Aktive Endpunkte
2
Methoden
GET
Pflichtparameter
4
Schema-Referenzen
2
{
"platform": "Google Careers",
"endpoint": "google-jobs-search",
"method": "GET",
"path": "/google-jobs/search",
"auth": "apiKey"
}Use Cases
Search Google's own careers site (careers.google.com) by keyword and location and get one posting by id, as structured JSON.
Mit Google Careers-Endpunkten verwandelst du google hiring-trend tracking in wiederholbare API-Requests mit dokumentierten Inputs und JSON-Antworten.
Mit Google Careers-Endpunkten verwandelst du job posting aggregation and monitoring in wiederholbare API-Requests mit dokumentierten Inputs und JSON-Antworten.
Mit Google Careers-Endpunkten verwandelst du recruiting and talent-market research in wiederholbare API-Requests mit dokumentierten Inputs und JSON-Antworten.
Managed Execution
Jede Zahl unten stammt direkt aus dem Live-Google Careers-Endpunktkatalog — 2 Endpunkte, 6 dokumentierte Request-Parameter und 2 veröffentlichte Response-Schemas — demselben Katalog, gegen den auch Docs und Playground laufen.
2 documented Google Careers endpoints, grouped into 2 request families — Job and Search.
6 request parameters are documented across those Google Careers endpoints, 4 of them required — the full input contract is public before you write any integration code.
2 of the 2 Google Careers endpoints ship a recorded example response, and 2 carry a documented response schema — you can code against the real JSON before the first request.
Google Careers endpoints document their error responses (400, 404, 429 and 503) alongside the success schema, so a block, a rate limit, or a missing record comes back as a typed error rather than silently empty data.
2 hosted MCP tools back the Google Careers endpoints, so an agent can call the same routes with the same parameters and the same JSON contract, with no custom glue.
Abdeckungskarte
Diese Karten werden aus dem aktiven Endpunktkatalog generiert, damit die Landingpage dieselbe API-Oberfläche widerspiegelt, die auch Docs und Playground nutzen.
/google-jobs/job
/google-jobs/search
Endpunktkatalog
/google-jobs/searchSearches Google's public careers site (careers.google.com) via its server-rendered search page's embedded job data. Each result includes the description, responsibilities, and qualifications inline. Page size is fixed by Google at 20 results.
Hinweise zur Response
- A valid query with no matches returns `total: 0` and an empty `jobs` array (not an error). - `jobs[].description`, `responsibilities`, `minimum_qualifications`, and `preferred_qualifications` are HTML-stripped plain text. - `jobs[].minimum_qualifications` / `preferred_qualifications` are split from Google's single combined qualifications block; if a posting only lists minimum qualifications, `preferred_qualifications` is omitted. - `jobs[].locations` lists every location display string for postings open to multiple offices; `jobs[].location` is the first one for convenience. `jobs[].country` is a 2-letter code parsed from the first location. - `jobs[].posted_at` is best-effort parsed from an embedded timestamp; it is omitted if the upstream shape ever drifts. - `jobs[].apply_url` requires a Google account to actually submit an application — same as any job board's apply link. Example response: ```json { "code": 200, "msg": "OK", "data": { "query": "software engineer", "location": "Singapore", "page": 1, "total": 102, "jobs": [ { "id": "85207000467546822", "title": "Software Engineer, Embedded Software, Silicon", "company": "Google", "location": "Singapore", "locations": ["Singapore"], "country": "SG", "description": "Google's software engineers develop the next-generation technologies...", "responsibilities": "Design and implement the validation software for Google Tensor...", "minimum_qualifications": "Bachelor's degree or equivalent practical experience. 2 years of experience with software development...", "preferred_qualifications": "Experience in embedded systems design, development, and debugging...", "posted_at": "2026-07-22T14:10:44Z", "url": "https://www.google.com/about/careers/applications/jobs/results/85207000467546822-software-engineer-embedded-software-silicon", "apply_url": "https://www.google.com/about/careers/applications/signin?jobId=..." } ], "source_url": "https://www.google.com/about/careers/applications/jobs/results/?location=Singapore&q=software+engineer" } } ```
MCP-Tool google_jobs_search
/google-jobs/jobReturns one Google Careers posting by its numeric job id (the `id` field returned by search). Parsed from careers.google.com's server-rendered job detail page.
Hinweise zur Response
- An unknown or no-longer-listed job id returns `404`. Google's detail page itself always answers `200` for any numeric id (valid or not) and swaps in an internal error payload instead of the job record for an invalid one — this endpoint detects that shape and maps it to a proper `404`. - `description`, `responsibilities`, `minimum_qualifications`, and `preferred_qualifications` are HTML-stripped plain text, split the same way as the search endpoint. - `locations`/`location`/`country` behave the same as in search. Example response: ```json { "code": 200, "msg": "OK", "data": { "id": "85207000467546822", "title": "Software Engineer, Embedded Software, Silicon", "company": "Google", "location": "New Taipei, Banqiao District, New Taipei City, Taiwan", "locations": ["New Taipei, Banqiao District, New Taipei City, Taiwan"], "country": "TW", "description": "Google's software engineers develop the next-generation technologies...", "responsibilities": "Design and implement the validation software for Google Tensor...", "minimum_qualifications": "Bachelor's degree or equivalent practical experience. 2 years of experience with software development...", "preferred_qualifications": "Experience in embedded systems design, development, and debugging...", "posted_at": "2026-07-22T14:10:44Z", "url": "https://www.google.com/about/careers/applications/jobs/results/85207000467546822-software-engineer-embedded-software-silicon", "apply_url": "https://www.google.com/about/careers/applications/signin?jobId=..." } } ```
MCP-Tool google_jobs_job
Verwandte APIs
Business & Market Intelligence
Turn public GitHub ecosystem signals into structured data for developer-market research, open-source intelligence, recruiting, and AI-agent workflows.
Business & Market Intelligence
Collect public TrustMRR startup marketplace and leaderboard data as normalized JSON for startup research, SaaS discovery, and market intelligence workflows.
Business & Market Intelligence
Add website and competitive intelligence signals from SimilarWeb to research pipelines.
Verwandtes Dataset
Dataset · abfragbares JSON
Google's open postings are also queryable in bulk alongside 18 other providers — filter by department, location, employment type, or remote flag over one REST call.
Dataset erkunden →So scrapst du Google Careers
Crawlora's Google Careers endpoints search Google's own careers board (google.com/about/careers) and return Google's openings as normalized JSON. On 2026-09-18, engineer matched 2,271 postings. Unlike the Apple and Tesla boards, Google's search results already include the full description, so the detail call mainly adds structured qualifications and the sign-in apply link.
/google-jobs/search takes q, a free-text location, and page, and returns 20 postings per page with total. Each posting has title, company (Google), location, a locations list, an ISO country code (SG, US), and the description. Engineer roles clustered in Mountain View and Singapore.
/google-jobs/job returns responsibilities, minimum_qualifications, and preferred_qualifications as separate fields, plus posted_at and an apply_url that goes through Google's careers sign-in.
Google job ids are long numbers, such as 101258786290705094, taken from the search result. Store them as strings to avoid precision loss in JSON parsers.
FAQ
Yes. Each search result carries the full description text, so you can screen roles without a per-job call. Fetch /google-jobs/job for the split qualifications.
No — Crawlora's Google Jobs API scrapes Google Search's job-results feature (jobs posted anywhere, aggregated by Google Search). This API is Google-the-employer's own careers.google.com board — only Google's own openings.