Registry Search

This guide explains how to use Intrepid Fox Registry Search via the API.

Registry Search lets you request company data from supported company registries. The process is fully automatic: no end-user interaction, iframe integration, or document upload is required.

Create a Registry Search Case

Use the POST /api/v1/cases (see https://docs.intrepidfox.tech/reference/create_case_api_v1_cases_post) to create a registry search case. Pass the following payload:

{
  "case": {
    "case_kind": "registry_search",
    "company_country_code": "GB",
    "company_full_name": "Company Name",
    "company_reg_number": "123456"
  }
}

If the case is created successfully, the response looks like this:

JSON

{
  "result": "case_created",
  "case_id": "9a7d81e0-f04a-4a40-9719-3598fb6bba10",
  "conversation_id": "9a7d81e0-f04a-4a40-9719-3598fb6bba10"
}

Obtain the Result

You can retrieve the result in two ways:

If company details cannot be obtained due to any reason, the result will contain no legal entities (not even for the main company).