What this endpoint helps with
The response includes matching Jobs, public context, and pagination data when more results are available.
When to use it
Use “By query” when an exact object ID is not known and relevant candidates must be found first.
Discover Jobs data on LinkedIn from a user query and connect the results to search, catalog, or research interfaces.
Use “By query” when an exact object ID is not known and relevant candidates must be found first.
Review the result and common workflows first, then move to parameters and a working request example.
The response includes matching Jobs, public context, and pagination data when more results are available.
Use “By query” when an exact object ID is not known and relevant candidates must be found first.
Add LinkedIn data search to customer-facing and internal interfaces.
Find candidates by query and save relevant objects for later enrichment.
Collect result sets for topic, creator, and competitive analysis.
Both versions solve the same job and accept the same parameters. Use the switch to compare the response structure and choose the version your client expects.
Switch versions on this page to compare response structures while keeping the same documentation URL.
Authentication, required parameters, and the request shape stay the same across V1 and V2. In practice, you choose the version when you build the endpoint path and when you parse the response.
The main difference is the response envelope. Use V2 for new integrations and keep V1 only when you need compatibility with an existing client contract.
Use the same API key header and the same query parameters for both versions. This documentation shows the shared parameter set first, then version-specific endpoint paths and code snippets.
| Parameter | Required | Type | Example | Description |
|---|---|---|---|---|
query |
Yes | str |
value |
User-entered search query. |
cursor |
No | str | None |
QVFB... |
Next-page cursor returned by the previous response. Omit it for the first page. |
location |
No | str | None |
value |
Optional location text used by LinkedIn public jobs search. Example: United States. |
Choose a version when you copy the exact endpoint path, example URL, and code snippet. The parameter list above stays the same.
GET /api/v2/linkedin.com/jobs/by-querycurl --request GET \
--url "https://www.scrapestorm.net/api/v2/linkedin.com/jobs/by-query" \
--header "X-API-Key: 00000000-0000-4000-8000-000000000000" \
--get --data-urlencode 'query=value' \
# Optional parameters:
# --data-urlencode 'cursor=QVFB...'
# --data-urlencode 'location=value'
from urllib.parse import urljoin
import requests
BASE_URL = "https://www.scrapestorm.net"
ENDPOINT = "/api/v2/linkedin.com/jobs/by-query"
HEADERS = {"Accept": "application/json", "X-API-Key": "00000000-0000-4000-8000-000000000000"}
params = {
"query": "value",
}
# Optional parameters
# params["cursor"] = "QVFB..."
# params["location"] = "value"
with requests.Session() as session:
response = session.request(
method="GET",
url=urljoin(BASE_URL, ENDPOINT),
headers=HEADERS,
params=params,
timeout=30,
)
response.raise_for_status()
payload = response.json()
print(payload)
const BASE_URL = "https://www.scrapestorm.net";
const endpoint = "/api/v2/linkedin.com/jobs/by-query";
const params = new URLSearchParams({
query: "value",
});
// Optional parameters
// params.set("cursor", "QVFB...");
// params.set("location", "value");
const response = await fetch(`${BASE_URL}${endpoint}?${params.toString()}`, {
method: "GET",
headers: {
Accept: "application/json",
"X-API-Key": "00000000-0000-4000-8000-000000000000",
},
});
if (!response.ok) {
throw new Error(`Request failed: ${response.status} ${response.statusText}`);
}
const payload = await response.json();
console.log(payload);
import axios from "axios";
const client = axios.create({
baseURL: "https://www.scrapestorm.net",
timeout: 30000,
headers: {
Accept: "application/json",
"X-API-Key": "00000000-0000-4000-8000-000000000000",
},
});
const params = {
query: "value",
};
// Optional parameters
// params.cursor = "QVFB...";
// params.location = "value";
const { data: payload } = await client.request({
method: "GET",
url: endpoint,
params,
});
console.log(payload);
<?php
declare(strict_types=1);
use GuzzleHttp\Client;
use GuzzleHttp\Exception\GuzzleException;
$client = new Client([
'base_uri' => "https://www.scrapestorm.net",
'timeout' => 30.0,
'headers' => [
'Accept' => 'application/json',
'X-API-Key' => "00000000-0000-4000-8000-000000000000",
],
]);
$query = [
"query" => "value",
];
// Optional parameters
// $query["cursor"] = "QVFB...";
// $query["location"] = "value";
try {
$response = $client->request("GET", "/api/v2/linkedin.com/jobs/by-query", [
'query' => $query,
]);
$payload = json_decode(
(string) $response->getBody(),
true,
512,
JSON_THROW_ON_ERROR
);
var_dump($payload);
} catch (GuzzleException $e) {
throw $e;
}
package main
import (
"encoding/json"
"fmt"
"net/http"
"net/url"
"time"
)
func main() {
baseURL := "https://www.scrapestorm.net"
endpoint := "/api/v2/linkedin.com/jobs/by-query"
params := url.Values{}
params.Set("query", "value")
// Optional parameters
// params.Set("location", "value")
req, err := http.NewRequest(
"GET",
fmt.Sprintf("%s%s?%s", baseURL, endpoint, params.Encode()),
nil,
)
if err != nil {
panic(err)
}
req.Header.Set("Accept", "application/json")
req.Header.Set("X-API-Key", "00000000-0000-4000-8000-000000000000")
client := &http.Client{Timeout: 30 * time.Second}
resp, err := client.Do(req)
if err != nil {
panic(err)
}
defer resp.Body.Close()
var payload any
if err := json.NewDecoder(resp.Body).Decode(&payload); err != nil {
panic(err)
}
fmt.Printf("%+v\n", payload)
}
Choose a version when you copy the exact endpoint path, example URL, and code snippet. The parameter list above stays the same.
GET /api/v1/linkedin.com/jobs/by-querycurl --request GET \
--url "https://www.scrapestorm.net/api/v1/linkedin.com/jobs/by-query" \
--header "X-API-Key: 00000000-0000-4000-8000-000000000000" \
--get --data-urlencode 'query=value' \
# Optional parameters:
# --data-urlencode 'cursor=QVFB...'
# --data-urlencode 'location=value'
from urllib.parse import urljoin
import requests
BASE_URL = "https://www.scrapestorm.net"
ENDPOINT = "/api/v1/linkedin.com/jobs/by-query"
HEADERS = {"Accept": "application/json", "X-API-Key": "00000000-0000-4000-8000-000000000000"}
params = {
"query": "value",
}
# Optional parameters
# params["cursor"] = "QVFB..."
# params["location"] = "value"
with requests.Session() as session:
response = session.request(
method="GET",
url=urljoin(BASE_URL, ENDPOINT),
headers=HEADERS,
params=params,
timeout=30,
)
response.raise_for_status()
payload = response.json()
print(payload)
const BASE_URL = "https://www.scrapestorm.net";
const endpoint = "/api/v1/linkedin.com/jobs/by-query";
const params = new URLSearchParams({
query: "value",
});
// Optional parameters
// params.set("cursor", "QVFB...");
// params.set("location", "value");
const response = await fetch(`${BASE_URL}${endpoint}?${params.toString()}`, {
method: "GET",
headers: {
Accept: "application/json",
"X-API-Key": "00000000-0000-4000-8000-000000000000",
},
});
if (!response.ok) {
throw new Error(`Request failed: ${response.status} ${response.statusText}`);
}
const payload = await response.json();
console.log(payload);
import axios from "axios";
const client = axios.create({
baseURL: "https://www.scrapestorm.net",
timeout: 30000,
headers: {
Accept: "application/json",
"X-API-Key": "00000000-0000-4000-8000-000000000000",
},
});
const params = {
query: "value",
};
// Optional parameters
// params.cursor = "QVFB...";
// params.location = "value";
const { data: payload } = await client.request({
method: "GET",
url: endpoint,
params,
});
console.log(payload);
<?php
declare(strict_types=1);
use GuzzleHttp\Client;
use GuzzleHttp\Exception\GuzzleException;
$client = new Client([
'base_uri' => "https://www.scrapestorm.net",
'timeout' => 30.0,
'headers' => [
'Accept' => 'application/json',
'X-API-Key' => "00000000-0000-4000-8000-000000000000",
],
]);
$query = [
"query" => "value",
];
// Optional parameters
// $query["cursor"] = "QVFB...";
// $query["location"] = "value";
try {
$response = $client->request("GET", "/api/v1/linkedin.com/jobs/by-query", [
'query' => $query,
]);
$payload = json_decode(
(string) $response->getBody(),
true,
512,
JSON_THROW_ON_ERROR
);
var_dump($payload);
} catch (GuzzleException $e) {
throw $e;
}
package main
import (
"encoding/json"
"fmt"
"net/http"
"net/url"
"time"
)
func main() {
baseURL := "https://www.scrapestorm.net"
endpoint := "/api/v1/linkedin.com/jobs/by-query"
params := url.Values{}
params.Set("query", "value")
// Optional parameters
// params.Set("location", "value")
req, err := http.NewRequest(
"GET",
fmt.Sprintf("%s%s?%s", baseURL, endpoint, params.Encode()),
nil,
)
if err != nil {
panic(err)
}
req.Header.Set("Accept", "application/json")
req.Header.Set("X-API-Key", "00000000-0000-4000-8000-000000000000")
client := &http.Client{Timeout: 30 * time.Second}
resp, err := client.Do(req)
if err != nil {
panic(err)
}
defer resp.Body.Close()
var payload any
if err := json.NewDecoder(resp.Body).Decode(&payload); err != nil {
panic(err)
}
fmt.Printf("%+v\n", payload)
}
The preview keeps key fields and the first collection items so you can scan the response shape quickly. Switching versions changes the JSON format.
This compact JSON example comes from the latest successful verification run for V2.
{
"success": true,
"status": "ok",
"pagination": {
"cursor": "10",
"has_more": true
},
"search_context": {
"query": "software",
"location": "United States"
},
"data": {
"jobs": {
"count": 10,
"items": [
{
"job_id": "4442141976",
"title": "Software Engineer",
"url": "https://www.linkedin.com/jobs/view/4442141976/",
"company_name": "Infinite Computer Solutions",
"company_url": "https://www.linkedin.com/company/infinite-computer-solutions",
"company_username": "infinite-computer-solutions",
"thumbnail_url": "https://example.com/image.jpg",
"location": "New Jersey, United States",
"posted_date": "2026-07-17",
"posted_time_text": "2 days ago"
},
{
"job_id": "4439496395",
"title": "Software Engineer",
"url": "https://www.linkedin.com/jobs/view/4439496395/",
"company_name": "Forge",
"company_url": "https://www.linkedin.com/company/forgehq",
"company_username": "forgehq",
"thumbnail_url": "https://example.com/image.jpg",
"location": "New York, NY",
"posted_date": "2026-07-14",
"posted_time_text": "5 days ago"
},
{
"_more_items": 8
}
]
}
}
}
This compact JSON example comes from the latest successful verification run for V1.
{
"success": true,
"status": "ok",
"pagination": {
"cursor": "10",
"has_more": true
},
"search_context": {
"location": "United States",
"query": "software"
},
"data": {
"response_text": "<!DOCTYPE html>\n\n <li>\n \n \n\n \n \n \n <div class=\"base-card relative w-full hover:no-underline focus:no-underline\n base-card--link\n base…"
}
}
Use this documentation as the first decision point, then move into pricing, platform coverage, and integration rules before you connect the endpoint for recurring use.
Use these answers to decide whether this API method fits your workflow, versioning choice, and rollout plan.
The method performs “By query” for Jobs. The compact response example below shows the exact field structure.
Choose V2 for new integrations because it provides a normalized structure. Use V1 only for compatibility with clients that already consume the platform-native format.
Create an API key, send it in the request header, and provide the required parameters from the table. The code samples already contain the correct path and request structure.