Skip to main content
GET
/
v2
/
legal-entities
/
{countryCode}
/
{legalEntityId}
/
ownership
Ownership
curl --request GET \
  --url https://api.bizzy.ai/v2/legal-entities/{countryCode}/{legalEntityId}/ownership \
  --header 'Authorization: Bearer <token>'
{
    "identifier": {
        "legalEntityId": "1778186251",
        "countryCode": "BE",
        "name": "Bizzy AI",
        "isPrimary": true
    },
    "data": {
        "shareholders": [
            {
                "legalEntity": null,
                "person": null,
                "function": {
                    "type": "SHAREHOLDER",
                    "shares": 6400,
                    "percentage": 0.0157,
                    "since": "2023-12-31",
                    "until": null,
                    "status": "ACTIVE",
                    "moneyContribution": null
                }
            }
        ],
        "investments": [],
        "mandates": [
            {
                "legalEntity": {
                    "type": "SUPPORTED",
                    "identifier": {
                        "legalEntityId": "0123456789",
                        "countryCode": "BE",
                        "name": "LEGALE ENTITEIT OOST-VLAANDEREN",
                        "isPrimary": false
                    }
                },
                "person": {
                    "contactId": "1234567890",
                    "firstName": "John",
                    "lastName": "Doe"
                },
                "function": {
                    "type": "PERMANENT_REPRESENTATIVE",
                    "shares": null,
                    "percentage": null,
                    "since": "2025-06-04",
                    "until": null,
                    "status": "ACTIVE",
                    "moneyContribution": null
                }
            }
        ],
        "founders": [
            {
                "legalEntity": null,
                "person": {
                    "contactId": "1234567890",
                    "firstName": "John",
                    "lastName": "Doe"
                },
                "function": {
                    "type": "FOUNDER",
                    "shares": 37500,
                    "percentage": null,
                    "since": "2021-06-29",
                    "until": null,
                    "status": "ACTIVE",
                    "moneyContribution": 37500
                }
            },
        ],
        "absoluteParent": null,
        "group": {
            "company": {
                "type": "SUPPORTED",
                "identifier": {
                    "legalEntityId": "1778186251",
                    "countryCode": "BE",
                    "name": "Bizzy AI",
                    "isPrimary": true
                }
            },
            "shares": null,
            "percentage": null,
            "level": 0,
            "daughters": []
        }
    }
}

Request

Accept-Language
string
default:"EN"
  • NL: Dutch - FR: French - EN: English

Path

countryCode
string
required
Any supported country code — see Supported countries.
Obfuscated legalEntityId returned by the company legal entities endpoint.
{
    "identifier": {
        "legalEntityId": "1778186251",
        "countryCode": "BE",
        "name": "Bizzy AI",
        "isPrimary": true
    },
    "data": {
        "shareholders": [
            {
                "legalEntity": null,
                "person": null,
                "function": {
                    "type": "SHAREHOLDER",
                    "shares": 6400,
                    "percentage": 0.0157,
                    "since": "2023-12-31",
                    "until": null,
                    "status": "ACTIVE",
                    "moneyContribution": null
                }
            }
        ],
        "investments": [],
        "mandates": [
            {
                "legalEntity": {
                    "type": "SUPPORTED",
                    "identifier": {
                        "legalEntityId": "0123456789",
                        "countryCode": "BE",
                        "name": "LEGALE ENTITEIT OOST-VLAANDEREN",
                        "isPrimary": false
                    }
                },
                "person": {
                    "contactId": "1234567890",
                    "firstName": "John",
                    "lastName": "Doe"
                },
                "function": {
                    "type": "PERMANENT_REPRESENTATIVE",
                    "shares": null,
                    "percentage": null,
                    "since": "2025-06-04",
                    "until": null,
                    "status": "ACTIVE",
                    "moneyContribution": null
                }
            }
        ],
        "founders": [
            {
                "legalEntity": null,
                "person": {
                    "contactId": "1234567890",
                    "firstName": "John",
                    "lastName": "Doe"
                },
                "function": {
                    "type": "FOUNDER",
                    "shares": 37500,
                    "percentage": null,
                    "since": "2021-06-29",
                    "until": null,
                    "status": "ACTIVE",
                    "moneyContribution": 37500
                }
            },
        ],
        "absoluteParent": null,
        "group": {
            "company": {
                "type": "SUPPORTED",
                "identifier": {
                    "legalEntityId": "1778186251",
                    "countryCode": "BE",
                    "name": "Bizzy AI",
                    "isPrimary": true
                }
            },
            "shares": null,
            "percentage": null,
            "level": 0,
            "daughters": []
        }
    }
}