/xing/companies/search
curl --request POST \
--url https://api.anysite.io/api/xing/companies/search \
--header 'Content-Type: application/json' \
--header 'access-token: <api-key>' \
--data '
{
"count": 2,
"timeout": 300,
"lang": "de"
}
'import requests
url = "https://api.anysite.io/api/xing/companies/search"
payload = {
"count": 2,
"timeout": 300,
"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({count: 2, timeout: 300, lang: 'de'})
};
fetch('https://api.anysite.io/api/xing/companies/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/companies/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([
'count' => 2,
'timeout' => 300,
'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/companies/search"
payload := strings.NewReader("{\n \"count\": 2,\n \"timeout\": 300,\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/companies/search")
.header("access-token", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"count\": 2,\n \"timeout\": 300,\n \"lang\": \"de\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.anysite.io/api/xing/companies/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 \"count\": 2,\n \"timeout\": 300,\n \"lang\": \"de\"\n}"
response = http.request(request)
puts response.read_body[
{
"name": "<string>",
"@type": "XingCompanyCard",
"id": "<string>",
"alias": "<string>",
"url": "<string>",
"image": "<string>",
"industry": "<string>",
"city": "<string>",
"job_count": 123,
"contract_type": "<string>"
}
]{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}/xing
/xing/companies/search
Browse XING companies (employer pages) by industry
Price: 5 credits per 78 results
POST
/
api
/
xing
/
companies
/
search
/xing/companies/search
curl --request POST \
--url https://api.anysite.io/api/xing/companies/search \
--header 'Content-Type: application/json' \
--header 'access-token: <api-key>' \
--data '
{
"count": 2,
"timeout": 300,
"lang": "de"
}
'import requests
url = "https://api.anysite.io/api/xing/companies/search"
payload = {
"count": 2,
"timeout": 300,
"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({count: 2, timeout: 300, lang: 'de'})
};
fetch('https://api.anysite.io/api/xing/companies/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/companies/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([
'count' => 2,
'timeout' => 300,
'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/companies/search"
payload := strings.NewReader("{\n \"count\": 2,\n \"timeout\": 300,\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/companies/search")
.header("access-token", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"count\": 2,\n \"timeout\": 300,\n \"lang\": \"de\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.anysite.io/api/xing/companies/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 \"count\": 2,\n \"timeout\": 300,\n \"lang\": \"de\"\n}"
response = http.request(request)
puts response.read_body[
{
"name": "<string>",
"@type": "XingCompanyCard",
"id": "<string>",
"alias": "<string>",
"url": "<string>",
"image": "<string>",
"industry": "<string>",
"city": "<string>",
"job_count": 123,
"contract_type": "<string>"
}
]{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}Authorizations
API token from the dashboard
Headers
Body
application/json
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 Required range:
x >= 1Required range:
20 <= x <= 1500Available options:
de, en