CorpVerify

CorpVerify provides company registry data and documents across 60+ jurisdictions worldwide. Reports include registration details, shareholder information, and financial data where available.

For the full list of supported countries and their capabilities, see CorpVerify Country Coverage.


Default Flow

  1. Use /cra/{countryCode}/search/companies to find the Company ID

  2. Pass this ID to /cra/request to initiate the report request

  3. Poll /cra/poll with the returned token until the document is ready


Retrieval Methods

Automated Retrieval — For supported countries (for example Hong Kong), providing a valid companyId enables automatic document fetching. The /cra/poll endpoint typically resolves within 5 minutes. Use /cra/{countryCode}/search/companies to obtain valid Company IDs.

Manual Processing — For countries without automation or when companyId is unavailable, Fill Easy processes requests manually. This may take up to several business days. You can still poll /cra/poll to check status and retrieve the document when ready.

Note: The search endpoint may return an empty companyId for certain countries. In these cases, provide the companyName instead and the request will be processed manually.


Try It Out

Explore available regions, search for companies, and purchase documents using our web interface: search.fill-easy.comarrow-up-right

Request

post

Initiate a company report request. Returns a JWT token for use with /cra/poll.

Required: countryCode (ISO 3166 alpha-2)

Recommended: companyId from /cra/{countryCode}/search/companies for faster automated processing.

Fallback: Provide companyName if companyId is unavailable — request will be processed manually.

Document Request: Provide documentId from /cra/{countryCode}/search/documents to request specific document.

Document Type: Each country has a defaultDocumentType (see /cra/info). Omitting documentType selects that default. To request a specific document, pass its name or alias from the country's documentTypes list.

Authorizations
x-client-idstringRequired

Client ID in x-client-id header.

x-client-secretstringRequired

Client Secret in x-client-secret header.

Body
Responses
chevron-right
200

Successfully initiated the request

application/json
tokenstringRequired

JWT token that encodes the request details and should be used in the /cra/poll endpoint to check the status and retrieve the document

Example: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIn0.dozjgNryP4J3jVmNHl0w5N_XgL0n3I9PlFUP0THsR8U
dryRunbooleanOptional

set to true if sample PDF is being used - no cost incurred

post
/cra/request

Poll Report

post

Poll this endpoint to check the status of a company registry report request. Keep polling until you receive a successful response with the message "CRA ready" and a presigned URL to download the document.

If the report is not ready yet, you will receive a 202 status code with the message "Report is pending".

Once the report is ready, the endpoint will bill the service and return a presigned URL valid for 7 days to download the PDF document.

Authorizations
x-client-idstringRequired

Client ID in x-client-id header.

x-client-secretstringRequired

Client Secret in x-client-secret header.

Body
tokenstringRequired

JWT token

Example: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIn0.dozjgNryP4J3jVmNHl0w5N_XgL0n3I9PlFUP0THsR8UPattern: ^[A-Za-z0-9-_]+\.[A-Za-z0-9-_]+\.[A-Za-z0-9-_]*$
Responses
chevron-right
200

Report is ready

application/json
post
/cra/poll

Search Companies by Name

post

This endpoint performs a search for companies in the respective country's Companies Registry by company name. It supports both English and Chinese company names and returns a list of matching companies.

Certain countries are unable to return a companyId - in those cases the idType in the response will be "Unavailable" and companyId will be an empty string.

The search will automatically detect if the input is in Chinese characters and adjust the search parameters accordingly.

The type of search is dependent on the country:

Substring search: KY, TH, PH, JP

Tokenized search (e.g. searching "PLE" will not result in "APPLE"): AU, SG

Left partial search: HK, BM, MY, FR

Partial name search: US

Authorizations
x-client-idstringRequired

Client ID in x-client-id header.

x-client-secretstringRequired

Client Secret in x-client-secret header.

Path parameters
countryCodestringRequired

ISO 3166 alpha-2 country code in lowercase.

Pattern: ^[a-z]{2}(-[a-z]{2})?$
Body
companyNamestringRequired

Company name to search (English or Chinese)

pageinteger · min: 1Optional

Page of results to return. Pagination support varies by country — for countries where it is not supported, only the first N results are returned regardless of this value. Check meta.page in the response to confirm whether pagination was applied.

Default: 1
Responses
chevron-right
200

Successfully retrieved matching companies

application/json
messagestringRequired

Response message

post
/cra/{countryCode}/search/companies

Search Company Documents

post

This endpoint searches for and returns documents filed by a company with the Companies Registry. Documents are grouped by category (e.g., Annual Return, Director/Secretary Changes, Charges Filed, etc.).

You can optionally filter by document type and year to narrow down the results.

Document categories include: Annual Return, Director / Secretary Changes, Charges Filed, Incorporation & Name Change, Liquidation & Deregistration, Registered Office / Address, Share Capital, and Other.

Authorizations
x-client-idstringRequired

Client ID in x-client-id header.

x-client-secretstringRequired

Client Secret in x-client-secret header.

Path parameters
countryCodestringRequired

ISO 3166 alpha-2 country code.

Pattern: ^[a-z]{2}$
Body
companyIdstringRequired

Company ID (e.g., BRN for Hong Kong, ACN for Australia)

documentTypestringOptional

Optional filter by document type. (Country Specific)

  • HK: financialStatement, annualReturn
  • PH: GIS, AFS
documentYearstringOptional

Optional filter by year

Responses
chevron-right
200

Successfully retrieved documents as a flat array

application/json
messagestring · enumRequired

Status of the operation

Possible values:
post
/cra/{countryCode}/search/documents

Get Company Base Information

post

This endpoint retrieves the base information for a specific company from the Companies Registry using its Company ID.

For Hong Kong Companies, the information includes company name (English and Chinese), status, type, category, incorporation date, dissolution date (if applicable), and any remarks.

For other countries, the information includes company name, status, category, incorporation date, and other available details such as entity type, registration address, and remarks where applicable. The exact fields returned may vary depending on the data provided by each country’s registry.

Authorizations
x-client-idstringRequired

Client ID in x-client-id header.

x-client-secretstringRequired

Client Secret in x-client-secret header.

Path parameters
countryCodestringRequired

ISO 3166 alpha-2 country code.

Pattern: ^[a-z]{2}(-[a-z]{2})?$
Body
companyIdstringRequired

Company ID (e.g., BRN for Hong Kong, ACN for Australia)

Responses
chevron-right
200

Successfully retrieved company information

application/json
messagestring · enumRequired

Status of the operation

Possible values:
resultone ofOptional

Company base information object or null if not found

or
nullOptional
post
/cra/{countryCode}/search/company

Info

get

Returns metadata and a list of all countries supported by the CorpVerify service, including their automation status, available search capabilities, report contents, and the available document types per country. Each country includes a defaultDocumentType indicating which document is returned when documentType is omitted from a /cra/request call.

For an up-to-date version of the same data, please view the CorpVerify Country Coverage table.

Authorizations
x-client-idstringRequired

Client ID in x-client-id header.

x-client-secretstringRequired

Client Secret in x-client-secret header.

Responses
chevron-right
200

Successfully retrieved country information

application/json
get
/cra/info

Last updated