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))
}回應
正在載入最新回應範例...
