Company search is the entry point to Kyckr. Every subsequent API call — Lite Profile, Enhanced Profile, Filing Search — requires theDocumentation Index
Fetch the complete documentation index at: https://developer.kyckr.com/llms.txt
Use this file to discover all available pages before exploring further.
id returned by a successful search. There are two ways to search, both served by the same endpoint.
| Search mode | When to use | Required parameters |
|---|---|---|
| Jurisdiction search | You know the company’s country — use this by default | isocode + name or companyNumber |
| Global search | You don’t know the country and cannot determine it | name only |
Jurisdiction search
A jurisdiction search queries the official company register for a specific jurisdiction, returning live data at the point of request. Provide either a company name or registration number alongside the two-letter ISO country code for the jurisdiction. The same endpoint handles both search modes.Search by name
Search by registration number
Example response
Global search
Use global search only when you cannot determine the company’s jurisdiction by other means — for example, when a counterparty hasn’t provided their country of registration. It queries a search index across 100+ countries and returns matching entities alongside their jurisdiction, which you can then use to run a jurisdiction search. Global search is a discovery tool, not a substitute for jurisdiction search. Use it to identify the country, then immediately follow up with a jurisdiction search to retrieve live, authoritative data from the official register. Search by name only — noisocode is required.
Example response
id field prefix identifies the jurisdiction — GB for United Kingdom, AU for Australia, US-OR for Oregon, and so on. Use this to run a jurisdiction search as your next step.
Key response fields
These fields are consistent across both search modes.| Field | Description |
|---|---|
id | Unique Kyckr identifier for this company. Required for all subsequent API calls — Lite Profile, Enhanced Profile, Filing Search. |
companyName | The company’s registered legal name. |
companyNumber | The registration number on the company register. |
status | Current legal status as reported by the registry (e.g. active, inactive, Registered). |
type | Legal form of the company (e.g. ltd, Private Limited Company). |
startDate | Date the company was registered. |
address | Registered address as held on the registry. |
Search matching and fuzzy search
Kyckr passes search queries directly through to the underlying company register and returns the results as-is. There is no additional matching layer applied on top. As a result, the quality and flexibility of search results depends entirely on the technical capability of each registry — some support partial and fuzzy matching, while others are more rudimentary. This means search behaviour will vary across jurisdictions. A query that returns strong results in one country may return nothing in another, not because the company doesn’t exist, but because the registry enforces stricter matching rules. To maximise the likelihood of a successful result:- Search by registration number when possible. Number-based searches are exact lookups and are not affected by registry matching quality. They are always the most reliable approach when you have the number available.
- Retry without legal suffixes, if a name search fails. Terms such as “Limited”, “Ltd”, “GmbH”, “Inc”, or “Pty” are handled inconsistently across registries. Searching for the core trading name tends to produce broader results.
Next steps
Once you have anid from a search result, you’re ready to retrieve company data.
Lite Profile
Fast company verification — status, registered address, and legal form.
Enhanced Profile
Full company profile including directors, shareholders, and filing history.
Filing Search
Order official registry documents and extracts.
Supported Jurisdictions
Full list of supported countries and ISO codes.
API reference
Search for Companies
GET /v2/companies — full parameter reference and response schema.