Get Profile Suggestions
curl --request GET \
--url https://jobs-api.registercheck.de/api/v2/search/suggestions \
--header 'Authorization: Bearer <token>'import requests
url = "https://jobs-api.registercheck.de/api/v2/search/suggestions"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://jobs-api.registercheck.de/api/v2/search/suggestions', 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://jobs-api.registercheck.de/api/v2/search/suggestions",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://jobs-api.registercheck.de/api/v2/search/suggestions"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://jobs-api.registercheck.de/api/v2/search/suggestions")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://jobs-api.registercheck.de/api/v2/search/suggestions")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"profiles": [
{
"id": "<string>",
"name": "<string>",
"country": "<string>",
"raw_name": "<string>",
"status": "<string>",
"is_active": true,
"is_visible": true,
"register_number": "<string>",
"register_prefix": "<string>",
"register_court": "<string>",
"register_country": "<string>",
"register_id": "<string>",
"location": [
123
],
"last_entry_date": 123,
"financial_reports_count": 123,
"has_financial_reports": true,
"original_purpose_lang": "<string>",
"share_capital_currency": "<string>"
}
],
"count": 123
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Search Endpoints ๐
Get Profile Suggestions
Get profile suggestions based on a search term.
This endpoint returns a list of profile suggestions that match the provided search term. The results can be limited to a specific number of suggestions.
Example
?search_term=Tech GmbH&limit=50
GET
/
search
/
suggestions
Get Profile Suggestions
curl --request GET \
--url https://jobs-api.registercheck.de/api/v2/search/suggestions \
--header 'Authorization: Bearer <token>'import requests
url = "https://jobs-api.registercheck.de/api/v2/search/suggestions"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://jobs-api.registercheck.de/api/v2/search/suggestions', 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://jobs-api.registercheck.de/api/v2/search/suggestions",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://jobs-api.registercheck.de/api/v2/search/suggestions"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://jobs-api.registercheck.de/api/v2/search/suggestions")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://jobs-api.registercheck.de/api/v2/search/suggestions")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"profiles": [
{
"id": "<string>",
"name": "<string>",
"country": "<string>",
"raw_name": "<string>",
"status": "<string>",
"is_active": true,
"is_visible": true,
"register_number": "<string>",
"register_prefix": "<string>",
"register_court": "<string>",
"register_country": "<string>",
"register_id": "<string>",
"location": [
123
],
"last_entry_date": 123,
"financial_reports_count": 123,
"has_financial_reports": true,
"original_purpose_lang": "<string>",
"share_capital_currency": "<string>"
}
],
"count": 123
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Authorizations
Enter your API key
Query Parameters
Search term to find profile suggestions
Maximum number of suggestions to return
Required range:
1 <= x <= 100Response
Successful Response
Model for profile search response containing companies and persons
Was this page helpful?
โI
