Skip to main content
GET
/
search
/
companies
Search Companies
curl --request GET \
  --url https://jobs-api.registercheck.de/api/v2/search/companies \
  --header 'Authorization: Bearer <token>'
import requests

url = "https://jobs-api.registercheck.de/api/v2/search/companies"

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/companies', 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/companies",
  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/companies"

	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/companies")
  .header("Authorization", "Bearer <token>")
  .asString();
require 'uri'
require 'net/http'

url = URI("https://jobs-api.registercheck.de/api/v2/search/companies")

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
{
  "companies": [
    {
      "id": "<string>",
      "name": "<string>",
      "register_number": 123,
      "register_court": "<string>",
      "register_prefix": "<string>",
      "country": "<string>",
      "legal_form": "<string>",
      "is_active": true,
      "status": "<string>",
      "has_financial_reports": true
    }
  ],
  "total_count": 123,
  "page_count": 123,
  "pagination": {
    "offset": 123,
    "limit": 123
  }
}
{
  "detail": [
    {
      "loc": [
        "<string>"
      ],
      "msg": "<string>",
      "type": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Enter your API key

Query Parameters

name
string | null

Company name (partial match)

register_number
string | null

Company register number

register_court
string | null

Court where the company is registered

register_prefix
string | null

Register prefix (e.g., HRB, HRA)

is_active
boolean | null

Whether the company is active

address
string | null

Address (partial match)

city
string | null

City (partial match)

has_financials
boolean | null

Whether the company has financial reports

offset
integer
default:0

Number of items to skip

Required range: x >= 0
limit
integer
default:10

Maximum number of items to return

Required range: 1 <= x <= 100

Response

Successful Response

Model for company search response

companies
CompanySearchResult ยท object[]
required

List of matching companies

total_count
integer
required

Total number of companies found

page_count
integer
required

Number of pages available

pagination
PaginationInfo ยท object
required

Pagination information for the results