View as Markdown
Search API icon

Search API ACTION

Google Jobs API

Search real-time Google Jobs listings. Returns a jobs array. Each page returns about 10 jobs; pass a previous run's pagination.next_page_token as Next Page Token for more. See the documentation
  • Action
  • Read only
  • API key
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's Search API account once, then configure and run Google Jobs API from your backend or agent.

import { PipedreamClient } from "@pipedream/sdk"

const pd = new PipedreamClient({
  projectId: process.env.PIPEDREAM_PROJECT_ID!,
  clientId: process.env.PIPEDREAM_CLIENT_ID!,
  clientSecret: process.env.PIPEDREAM_CLIENT_SECRET!,
  projectEnvironment: "production",
})

const result = await pd.actions.run({
  id: "search_api-google-jobs",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    search_api: { authProvisionId: "apn_xxxxxxx" },
    q: "Query",
    location: "Location",
  },
})

console.log(result)

SCHEMA

Inputs

Pipedream supplies the connected account. Your application provides the operation-specific values below. Dynamic inputs are resolved against that user's account.

Google Jobs API inputs
Property Type Description
q Query string
The search query, e.g. AI Engineer in New York. Supports Google Jobs operators such as remote customer service jobs or jobs from LinkedIn.
Required
location Location string
The canonical location of the search, e.g. New York,New York,United States. Use List Locations to look up a supported location and pass its canonical_name here. If multiple locations match, the most popular one is selected.
Optional
gl Search Country string
The default parameter us defines the country of the search. Google Jobs supports a narrower set of countries than the other Google engines. See the documentation
Optional
hl Interface Language string
The default parameter en defines the interface language of the search.
Optional
nextPageToken Next Page Token string
Token used to retrieve the next page of results. It is returned as pagination.next_page_token in the response of a previous search when more results are available.
Optional

REFERENCE

Tool details

Behavior hints are published with the component in the Pipedream registry and surface as MCP tool annotations, so an agent can reason about a tool before it calls it.

Registry key
search_api-google-jobs
Version
0.0.2
App
Search API
Authentication
API key
Read-only
Yes
Destructive
No
Open world
Yes