GET
/
v2
/
companies
/
search
/
indexed
Search Companies (Indexed)
curl --request GET \
  --url https://api.openregisters.com/v2/companies/search/indexed \
  --header 'X-API-Key: <api-key>'
{
  "searchResults": [
    {
      "kausateId": "<string>",
      "jurisdictionCode": "<string>",
      "name": "<string>",
      "alternativeNames": [
        "<string>"
      ],
      "identifiers": [
        {
          "value": "<string>",
          "type": "<string>",
          "description": "<string>"
        }
      ]
    }
  ],
  "pagination": {
    "page": 123,
    "limit": 123,
    "hasMore": true
  }
}

Authorizations

X-API-Key
string
header
required

Sign up at Kausate.com to get an API key

Query Parameters

jurisdictionCode
string
default:de
name
string
required
Minimum length: 1
limit
integer | null
default:10
Required range: 1 <= x <= 1000
page
integer | null
default:0
Required range: x >= 0

Response

200
application/json

Successful Response

Response model for company search.