Request a company verification

To initiate the company verification process, you need to send the company identification number, using the following endpoint:

POST /verifications/companies

{
    "company_number": "794513986",
    "country_code": "FR",
    "workspace_id": null
}
{
    "id": "3e5a33c0-0c33-4110-89d0-1ca536655d09",
    "workspace_id": "6ed2772f-8d7e-4f67-ab2a-790a1dce2adc",
    "created_at": "2025-03-31T09:25:11+00:00",
    "updated_at": "2025-03-31T09:25:11+00:00",
    "status": "pending",
    "data": {
        "company_information": {
            "name": null,
            "trade_name": null,
            "company_number": null,
            "legal_form": {
                "code": null,
                "description": null
            },
            "vat_number": null,
            "activities": [],
            "founded_on": null,
            "ceased_on": null,
            "active": null,
            "commercial_registration": {
                "location": null,
                "registered_on": null
            },
            "has_workforce": null
        },
        "headquarter": {
            "address_line_1": null,
            "address_line_2": null,
            "postal_code": null,
            "city": null,
            "country_code": null
        },
        "legal_representatives": []
    }
}

Before making a request, please make sure to select the correct country based on the type of company number you are entering. Each country supports a specific format, as detailed below:

CountryFormatDescriptionExample
France (FR)SIREN9-digit number issued by INSEE794513986
Belgium (BE)Enterprise Number10-digit number from the Crossroads Bank for Enterprises0223.459.690
Switzerland (CH)UID9-digit business ID from the Federal Statistical Office396.664.102
United Kingdom (GB)CRN (Company Registration Number)8-digit number, or 2 letters followed by 6 digits, issued by Companies HouseRC000057
Netherlands (NL)KVK8-digit number issued by Kamer van Koophandel17001910

In the response, you'll find the id. This value is required to retrieve the verification results.