Method: projects.jobs.search

Searches for jobs using the provided SearchJobsRequest.

This call constrains the visibility of jobs present in the database, and only returns jobs that the caller has permission to search against.

HTTP request

POST https://jobs.googleapis.com/v3/{parent=projects/*}/jobs:search

The URL uses gRPC Transcoding syntax.

Path parameters

Parameters
parent

string

Required. The resource name of the project to search within.

The format is "projects/{projectId}", for example, "projects/api-test-project".

Request body

The request body contains data with the following structure:

JSON representation
{
  "searchMode": enum (SearchMode),
  "requestMetadata": {
    object (RequestMetadata)
  },
  "jobQuery": {
    object (JobQuery)
  },
  "enableBroadening": boolean,
  "requirePreciseResultSize": boolean,
  "histogramFacets": {
    object (HistogramFacets)
  },
  "jobView": enum (JobView),
  "offset": integer,
  "pageSize": integer,
  "pageToken": string,
  "orderBy": string,
  "diversificationLevel": enum (DiversificationLevel),
  "disableKeywordMatch": boolean
}
Fields
searchMode

enum (SearchMode)

Optional. Mode of a search.

Defaults to SearchMode.JOB_SEARCH.

requestMetadata

object (RequestMetadata)

Required. The meta information collected about the job searcher, used to improve the search quality of the service. The identifiers (such as userId) are provided by users, and must be unique and consistent.

jobQuery

object (JobQuery)

Optional. Query used to search against jobs, such as keyword, location filters, etc.

enableBroadening

boolean

Optional. Controls whether to broaden the search when it produces sparse results. Broadened queries append results to the end of the matching results list.

Defaults to false.

requirePreciseResultSize
(deprecated)

boolean

This field is deprecated.

histogramFacets

object (HistogramFacets)

Optional. Histogram requests for jobs matching JobQuery.

jobView

enum (JobView)

Optional. The desired job attributes returned for jobs in the search response. Defaults to [JobView.SMALL][] if no value is specified.

offset

integer

Optional. An integer that specifies the current offset (that is, starting result location, amongst the jobs deemed by the API as relevant) in search results. This field is only considered if pageToken is unset.

The maximum allowed value is 5000. Otherwise an error is thrown.

For example, 0 means to return results starting from the first matching job, and 10 means to return from the 11th job. This can be used for pagination, (for example, pageSize = 10 and offset = 10 means to return from the second page).

pageSize

integer

Optional. A limit on the number of jobs returned in the search results. Increasing this value above the default value of 10 can increase search response time. The value can be between 1 and 100.

pageToken

string

Optional. The token specifying the current offset within search results. See SearchJobsResponse.next_page_token for an explanation of how to obtain the next set of query results.

orderBy

string

Optional. The criteria determining how search results are sorted. Default is "relevance desc".

Supported options are:

diversificationLevel

enum (DiversificationLevel)

Optional. Controls whether highly similar jobs are returned next to each other in the search results. Jobs are identified as highly similar based on their titles, job categories, and locations. Highly similar results are clustered so that only one representative job of the cluster is displayed to the job seeker higher up in the results, with the other jobs being displayed lower down in the results.

Defaults to DiversificationLevel.SIMPLE if no value is specified.

disableKeywordMatch

boolean

Optional. Controls whether to disable exact keyword match on [Job.job_title][], Job.description, Job.company_display_name, [Job.locations][0], Job.qualifications. When disable keyword match is turned off, a keyword match returns jobs that do not match given category filters when there are matching keywords. For example, the query "program manager," a result is returned even if the job posting has the title "software developer," which does not fall into "program manager" ontology, but does have "program manager" appearing in its description.

For queries like "cloud" that does not contain title or location specific ontology, jobs with "cloud" keyword matches are returned regardless of this flag's value.

Please use [Company.keyword_searchable_custom_fields][] or [Company.keyword_searchable_custom_attributes][] if company specific globally matched custom field/attribute string values is needed. Enabling keyword match improves recall of subsequent search requests.

Defaults to false.

Response body

If successful, the response body contains an instance of SearchJobsResponse.

Authorization Scopes

Requires one of the following OAuth scopes:

  • https://www.googleapis.com/auth/jobs
  • https://www.googleapis.com/auth/cloud-platform

For more information, see the Authentication Overview.