/xing/jobs/search
curl --request POST \
--url https://api.anysite.io/api/xing/jobs/search \
--header 'Content-Type: application/json' \
--header 'access-token: <api-key>' \
--data '
{
"keyword": "<string>",
"count": 2,
"timeout": 300,
"location": "<string>",
"radius": 1,
"employment_type": [],
"career_level": [],
"remote_option": [],
"industry": [],
"salary_min": 1,
"salary_max": 1,
"lang": "de"
}
'import requests
url = "https://api.anysite.io/api/xing/jobs/search"
payload = {
"keyword": "<string>",
"count": 2,
"timeout": 300,
"location": "<string>",
"radius": 1,
"employment_type": [],
"career_level": [],
"remote_option": [],
"industry": [],
"salary_min": 1,
"salary_max": 1,
"lang": "de"
}
headers = {
"access-token": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'access-token': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
keyword: '<string>',
count: 2,
timeout: 300,
location: '<string>',
radius: 1,
employment_type: [],
career_level: [],
remote_option: [],
industry: [],
salary_min: 1,
salary_max: 1,
lang: 'de'
})
};
fetch('https://api.anysite.io/api/xing/jobs/search', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.anysite.io/api/xing/jobs/search",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'keyword' => '<string>',
'count' => 2,
'timeout' => 300,
'location' => '<string>',
'radius' => 1,
'employment_type' => [
],
'career_level' => [
],
'remote_option' => [
],
'industry' => [
],
'salary_min' => 1,
'salary_max' => 1,
'lang' => 'de'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"access-token: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.anysite.io/api/xing/jobs/search"
payload := strings.NewReader("{\n \"keyword\": \"<string>\",\n \"count\": 2,\n \"timeout\": 300,\n \"location\": \"<string>\",\n \"radius\": 1,\n \"employment_type\": [],\n \"career_level\": [],\n \"remote_option\": [],\n \"industry\": [],\n \"salary_min\": 1,\n \"salary_max\": 1,\n \"lang\": \"de\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("access-token", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.anysite.io/api/xing/jobs/search")
.header("access-token", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"keyword\": \"<string>\",\n \"count\": 2,\n \"timeout\": 300,\n \"location\": \"<string>\",\n \"radius\": 1,\n \"employment_type\": [],\n \"career_level\": [],\n \"remote_option\": [],\n \"industry\": [],\n \"salary_min\": 1,\n \"salary_max\": 1,\n \"lang\": \"de\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.anysite.io/api/xing/jobs/search")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["access-token"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"keyword\": \"<string>\",\n \"count\": 2,\n \"timeout\": 300,\n \"location\": \"<string>\",\n \"radius\": 1,\n \"employment_type\": [],\n \"career_level\": [],\n \"remote_option\": [],\n \"industry\": [],\n \"salary_min\": 1,\n \"salary_max\": 1,\n \"lang\": \"de\"\n}"
response = http.request(request)
puts response.read_body[
{
"id": "<string>",
"@type": "XingJob",
"global_id": "<string>",
"slug": "<string>",
"url": "<string>",
"company_name": "<string>",
"company_id": "<string>",
"employment_type": "<string>",
"career_level": "<string>",
"discipline": "<string>",
"industry": "<string>",
"language": "<string>",
"keywords": [],
"remote_options": [],
"salary": {
"@type": "XingJobSalary",
"currency": "<string>",
"minimum": 123,
"maximum": 123,
"median": 123
},
"location": {
"@type": "XingJobLocation",
"city": "<string>",
"city_id": 123,
"region": "<string>",
"street": "<string>",
"zip_code": "<string>",
"country_code": "<string>",
"country": "<string>"
},
"description_text": "<string>",
"website": "<string>",
"apply_url": "<string>",
"is_paid": true,
"is_top_job": true,
"is_prioritized": true,
"redirects_to_third_party": true,
"activated_at": 123,
"refreshed_at": 123,
"expires_at": 123
}
]{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}/xing
/xing/jobs/search
Search XING job postings by keyword and filters
Price: 10 credits per 20 results
POST
/
api
/
xing
/
jobs
/
search
/xing/jobs/search
curl --request POST \
--url https://api.anysite.io/api/xing/jobs/search \
--header 'Content-Type: application/json' \
--header 'access-token: <api-key>' \
--data '
{
"keyword": "<string>",
"count": 2,
"timeout": 300,
"location": "<string>",
"radius": 1,
"employment_type": [],
"career_level": [],
"remote_option": [],
"industry": [],
"salary_min": 1,
"salary_max": 1,
"lang": "de"
}
'import requests
url = "https://api.anysite.io/api/xing/jobs/search"
payload = {
"keyword": "<string>",
"count": 2,
"timeout": 300,
"location": "<string>",
"radius": 1,
"employment_type": [],
"career_level": [],
"remote_option": [],
"industry": [],
"salary_min": 1,
"salary_max": 1,
"lang": "de"
}
headers = {
"access-token": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'access-token': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
keyword: '<string>',
count: 2,
timeout: 300,
location: '<string>',
radius: 1,
employment_type: [],
career_level: [],
remote_option: [],
industry: [],
salary_min: 1,
salary_max: 1,
lang: 'de'
})
};
fetch('https://api.anysite.io/api/xing/jobs/search', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.anysite.io/api/xing/jobs/search",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'keyword' => '<string>',
'count' => 2,
'timeout' => 300,
'location' => '<string>',
'radius' => 1,
'employment_type' => [
],
'career_level' => [
],
'remote_option' => [
],
'industry' => [
],
'salary_min' => 1,
'salary_max' => 1,
'lang' => 'de'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"access-token: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.anysite.io/api/xing/jobs/search"
payload := strings.NewReader("{\n \"keyword\": \"<string>\",\n \"count\": 2,\n \"timeout\": 300,\n \"location\": \"<string>\",\n \"radius\": 1,\n \"employment_type\": [],\n \"career_level\": [],\n \"remote_option\": [],\n \"industry\": [],\n \"salary_min\": 1,\n \"salary_max\": 1,\n \"lang\": \"de\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("access-token", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.anysite.io/api/xing/jobs/search")
.header("access-token", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"keyword\": \"<string>\",\n \"count\": 2,\n \"timeout\": 300,\n \"location\": \"<string>\",\n \"radius\": 1,\n \"employment_type\": [],\n \"career_level\": [],\n \"remote_option\": [],\n \"industry\": [],\n \"salary_min\": 1,\n \"salary_max\": 1,\n \"lang\": \"de\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.anysite.io/api/xing/jobs/search")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["access-token"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"keyword\": \"<string>\",\n \"count\": 2,\n \"timeout\": 300,\n \"location\": \"<string>\",\n \"radius\": 1,\n \"employment_type\": [],\n \"career_level\": [],\n \"remote_option\": [],\n \"industry\": [],\n \"salary_min\": 1,\n \"salary_max\": 1,\n \"lang\": \"de\"\n}"
response = http.request(request)
puts response.read_body[
{
"id": "<string>",
"@type": "XingJob",
"global_id": "<string>",
"slug": "<string>",
"url": "<string>",
"company_name": "<string>",
"company_id": "<string>",
"employment_type": "<string>",
"career_level": "<string>",
"discipline": "<string>",
"industry": "<string>",
"language": "<string>",
"keywords": [],
"remote_options": [],
"salary": {
"@type": "XingJobSalary",
"currency": "<string>",
"minimum": 123,
"maximum": 123,
"median": 123
},
"location": {
"@type": "XingJobLocation",
"city": "<string>",
"city_id": 123,
"region": "<string>",
"street": "<string>",
"zip_code": "<string>",
"country_code": "<string>",
"country": "<string>"
},
"description_text": "<string>",
"website": "<string>",
"apply_url": "<string>",
"is_paid": true,
"is_top_job": true,
"is_prioritized": true,
"redirects_to_third_party": true,
"activated_at": 123,
"refreshed_at": 123,
"expires_at": 123
}
]{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}Authorizations
API token from the dashboard
Headers
Body
application/json
Minimum string length:
1Required range:
x >= 1Required range:
20 <= x <= 1500Required range:
x >= 0Available options:
part_time, full_time, contractor, intern, seasonal, temporary, voluntary Available options:
student, entry_level, professional, manager, director, executive Available options:
full_remote, partly_remote, non_remote Available options:
architektur-bauwesen, architektur, baugewerbe, bauingenieurwesen, baustoffe, garten-landschaftsbau, automobil-fahrzeugbau, automobile-zweiraeder, fahrzeugvermietung, luft-raumfahrzeugbau, schienenfahrzeugbau, schiffbau, verkehrstechnik, banken-finanzdienstleistungen, bankwesen, finanzdienstleistungen, investmentbanken, risikokapital-private-equity, beratung-consulting, energie-wasser-umwelt, abfaelle-recycling, energiewirtschaft, erneuerbare-energien, umweltschutz, wasserversorgung-entsorgung, erziehung-bildung-wissenschaft, coaching-fortbildung, e-learning, fach-hochschulen, forschung, kinderbetreuung, schulen-kindergaerten, gesundheit-soziales, alternative-medizin, arztpraxen, krankenhaeuser, medizinische-dienste, pflegeberufe, psychologie-psychotherapie, sozialwesen, tiermedizin, immobilien, facility-management, immobilienvermittlung, immobilienverwaltung, industrie-maschinenbau, bio-nanotechnologie, chemie, druckwesen, elektrotechnik, halbleiter-elektronische-bauteile, kunststoff-gummiwaren, maschinenbau-betriebstechnik, mess-steuer-regelungstechnik, metallindustrie-verarbeitung, mineraloel-verarbeitung, optische-fotografische-geraete, ruestung, verbundwerkstoffe, internet-it, computer-hardware, computer-software, computernetzwerke, computerspiele, internet-onlinemedien, it-dienstleister, it-sicherheit, unterhaltungselektronik, konsumgueter-handel, einzelhandel, getraenke, glas-keramik, grosshandel, import-export, kosmetik-koerperpflege, lebensmittel, mode-textilien, moebel-holzwaren, papierwaren, schmuck-luxusgueter, tabakwaren, kunst-kultur-sport, bibliotheken, darstellende-kunst, fitness-studios-sportvereine-anlagen, fotografie, kunst-kunsthandwerk, museen-kultureinrichtungen, musik, sporttreibende-veranstalter-verbaende, marketing-pr-design, design-grafik, marketing-werbung, markt-meinungsforschung, messe-ausstellungen-kongresse, pr, medien-verlage, film-musik, informationsdienste, journalismus, rundfunk-fernsehen, text-lektorat, uebersetzen-dolmetschen, verlagswesen, oeffentlicher-dienst-verbaende-einrichtungen, gemeinnuetzige-einrichtungen-vereine, internationale-angelegenheiten, oeffentliche-verwaltung, politik-verbaende, religioese-einrichtungen, verteidigung-justiz-polizei, personaldienstleistungen, outsourcing-offshoring, personaldienstleistungen-beratung, pharma-medizintechnik, medizintechnik, pharmazeutische-produkte-arzneimittel, sonstige-branchen, bergbau-metalle, fischerei, forstwirtschaft-jagd, geologie, landwirtschaft, sicherheit-ermittlungen, sonstige-dienstleistungen, spiel-wett-lotteriewesen, telekommunikation, tourismus-gastronomie, freizeiteinrichtungen, gastronomie, hotelgewerbe, reisebueros-veranstalter, transport-logistik, bahnverkehr, lagerhaltung, luftverkehr, personenverkehr, post-spedition, schifffahrt, versicherungen, wirtschaftspruefung-steuern-recht, rechtsberatung, steuerberatung, wirtschaftspruefung Available options:
last_24_hours, last_week, last_month Required range:
x >= 0Required range:
x >= 0Available options:
de, en Response
Successful Response
Show child attributes
Show child attributes
Show child attributes
Show child attributes