GET
/
search
/
companies
curl --request GET \
  --url https://jobs-api.registercheck.de/api/v2/search/companies \
  --header 'Authorization: Bearer <token>'
{
  "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
  }
}

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

200
application/json

Successful Response

Model for company search response