Google 职位 搜索 API
API 健康状态
健康 可用 受限 大多不可用 无数据
正在加载健康状态...
获取 Google 职位搜索数据,包括职位名称、公司和地点,用于聚合招聘板结果、分析招聘趋势以及监控招聘活动。
标签: Google 职位
请求参数
| 名称 | 必填 | 类型 | 默认值 | 说明 |
|---|---|---|---|---|
query | 是 | string | 职位搜索查询(例如“软件工程师”、“数据科学家 伦敦”)。 | |
country | 否 | string | us | 设置目标国家代码(例如 'us'、'uk')以本地化结果。请参阅 Google 国家/地区。 |
language | 否 | string | en | 使用其两位字母代码设置结果语言(例如 'en' 表示英语,'fr' 表示法语)。请参阅 Google 语言。 |
next_page_token | 否 | string | 用于检索职位结果下一页的令牌。可在之前响应的“next_page_token”中找到。 | |
chips | 否 | string | 额外的搜索过滤器(标签),如工作类型、发布日期等。使用先前响应中返回的值。 | |
lrad | 否 | string | 以英里为单位的搜索半径,围绕指定位置。 | |
ltype | 否 | string | 按工作地点类型筛选。设置为'1'表示远程工作(在家办公)的职位。 | |
uds | 否 | string | Google 提供的高级工作结果过滤字符串。 | |
uule | 否 | string | 编码后的位置字符串(UULE),用于将工作结果本地化到特定地理区域。 |
复制请求
bash
curl -X GET "https://api.justserpapi.com/api/v1/google/jobs/search?query=coffee" \
-H "X-API-Key: YOUR_API_KEY"js
const res = await fetch("https://api.justserpapi.com/api/v1/google/jobs/search?query=coffee", {
headers: { "X-API-Key": "YOUR_API_KEY" }
});
const data = await res.json();
console.log(data);python
import requests
url = "https://api.justserpapi.com/api/v1/google/jobs/search"
headers = { "X-API-Key": "YOUR_API_KEY" }
params = {
"query": "coffee"
}
response = requests.get(url, headers=headers, params=params)
print(response.json())php
<?php
$url = "https://api.justserpapi.com/api/v1/google/jobs/search?query=coffee";
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, [
"X-API-Key: YOUR_API_KEY"
]);
$response = curl_exec($ch);
curl_close($ch);
echo $response;go
package main
import (
"fmt"
"io"
"net/http"
)
func main() {
client := &http.Client{}
req, _ := http.NewRequest("GET", "https://api.justserpapi.com/api/v1/google/jobs/search?query=coffee", nil)
req.Header.Set("X-API-Key", "YOUR_API_KEY")
resp, _ := client.Do(req)
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}响应
正在加载最新响应示例...
