POST
/
v2
/
companies
/
search
/
live
Search Companies (real-time)
curl --request POST \
  --url https://api.openregisters.com/v2/companies/search/live \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '{
  "companyName": "Lindt",
  "jurisdictionCode": "de"
}'
{
  "searchResults": [
    {
      "kausateId": "<string>",
      "jurisdictionCode": "<string>",
      "name": "<string>",
      "alternativeNames": [
        "<string>"
      ],
      "identifiers": [
        {
          "value": "<string>",
          "type": "<string>",
          "description": "<string>"
        }
      ]
    }
  ]
}

Authorizations

X-API-Key
string
header
required

Sign up at Kausate.com to get an API key

Query Parameters

sync
boolean
default:true

If True, wait for results. If False, return workflow ID immediately

Body

application/json

Request model for live company search using BatchQuickCrawl.

Response

200
application/json

Successful Response

Response model for live company search (same as CompanySearchResponse but without pagination).