- Developer newsUpdates to the API
- IntroductionAbout the Companies V2 API
- Company searchSearch for a company by name or number
- Global searchSearch for a company globally
- Lite ProfileBasic company verification details
- Enhanced ProfileCompany profiles with representatives and shareholders
- Filing searchOrder registry extracts and filings
- About testingInformation about the Kyckr V2 test environment
- Supported jurisdictionsJurisdictions and regional codes
Global search
Search for a company globally
Kyckr provides access to a stored database of companies called Global Search, allowing searches to locate an entity without knowing the jurisdiction. Searches can only be performed using a company name.
The response provides the company's jurisdiction information in both the id
field (prefix) and the type
field, identifying the registry where the company exists.
Note: Global Search relies on stored data which may not be current. After identifying the correct jurisdiction, use Kyckr's Search by Name or Search by Number API with the specific jurisdiction to confirm that the entity remains active on the register.
Below is an example of the results from searching 'Kyckr' using the V2 API:
{
"correlationId": "976a3da3b7fa4a229958ddd61c8f349f",
"cost": {
"type": "credit",
"value": 0
},
"timeStamp": "2025-01-15T08:10:30.5431146Z",
"details": "Success",
"data": {
"totalCount": 4,
"totalPages": 1,
"pageNumber": 1,
"pageSize": 50,
"companies": [
{
"id": "AU|NjA5MzIzMjU3",
"companyName": "KYCKR PTY LIMITED",
"companyNumber": "609323257",
"address": "MASCOT, New South Wales, 2020",
"status": "Registered",
"type": "Australian Proprietary Company, Limited By Shares",
"startDate": "2015-11-16"
},
{
"id": "IE|NDM2MDI0",
"companyName": "KYCKR IRELAND LIMITED",
"companyNumber": "436024",
"address": "ARC LABS RESEARCH CENTER, WIT WEST CAMPUS, CARRIGANORE WATERFORD, CO WATERFORD, WATERFORD, IRELAND",
"status": "Normal",
"type": "LTD - Private Company Limited by Shares",
"startDate": "2007-03-08"
},
{
"id": "GB|MTE2NTUyOTA",
"companyName": "KYCKR UK LIMITED",
"companyNumber": "11655290",
"address": "Kemp House\n160 City Road, London, EC1V 2NX",
"status": "Active",
"type": "Private Limited Company",
"startDate": "2018-11-01"
},
{
"id": "US-OR|ODc4ODc3OTE",
"companyName": "KYCKR, LLC",
"companyNumber": "87887791",
"status": "Inactive",
"type": "DOMESTIC LIMITED LIABILITY COMPANY",
"startDate": "2012-08-29"
}
]
}
}
To perform this search, make a GET request to /v2/companies
with the name
parameter:
GET https://api.kyckr.com/v2/companies?name=Kyckr
The response includes comprehensive company information including:
- Company identification (
id
,companyName
,companyNumber
) - Location information (
address
) - Status information (
status
,type
,startDate
)