Skip to main content
POST
/
v1
/
incorporation
{
    "name": "Beglaubigt.de GmbH",
    "legal_form": "gmbh",
    "purpose": "Durchführung von digitalen Notarisierungsverfahren mit Schwerpunkt auf Deutschland und dem europäischen Raum.",
    "address": {
        "street": "Maximilianstraße 15",
        "street_second_line": "Apartment 3B",
        "zip": "80539",
        "city": "Munich",
        "state": "Bayern",
        "country": "Germany"
    },
    "business_address": {
        "street": "Goethestraße 18",
        "street_second_line": "2. Etage, Büro 5B",
        "zip": "50667",
        "city": "Cologne",
        "state": "Nordrhein-Westfalen",
        "country": "Germany"
    },
    "capital": 25000,
    "shareholders": {
        "individuals": [
            {
                "first_name": "John",
                "middle_name": "Michael",
                "last_name": "Doe",
                "email": "john@doe.de",
                "phone": "+49 151 12345678",
                "dob": "1985-07-10",
                "nationality": "de",
                "address": {
                    "street": "Bahnhofstraße 10",
                    "street_second_line": "Gebäude B, 2. Etage, Raum 204",
                    "zip": "10115",
                    "city": "Berlin",
                    "state": "Berlin",
                    "country": "Germany"
                },
                "shares": 12500,
                "share_percentage": 50
            }
        ],
        "entities": [
            {
                "name": "Acme Holdings GmbH",
                "registration_number": "HRB123456",
                "address": {
                    "street": "Königsallee 50",
                    "street_second_line": "Haus C, 3. Stock, Büro 301",
                    "zip": "40212",
                    "city": "Düsseldorf",
                    "state": "Nordrhein-Westfalen",
                    "country": "de"
                },
                "directors": [
                    {
                        "first_name": "Stefan",
                        "last_name": "Müller",
                        "dob": "1985-06-15",
                        "nationality": "de",
                        "email": "stefan.mueller@example.com",
                        "phone": "+49 151 98765432",
                        "address": {
                            "street": "Bahnhofstraße 10",
                            "street_second_line": "Gebäude B, 2. Etage, Raum 204",
                            "zip": "10115",
                            "city": "Berlin",
                            "state": "Berlin",
                            "country": "de"
                        }
                    },
                    {
                        "first_name": "Laura",
                        "last_name": "Schneider",
                        "dob": "1990-03-22",
                        "nationality": "de",
                        "email": "laura.schneider@example.com",
                        "phone": "+49 160 12345678",
                        "address": {
                            "street": "Lindenweg 7",
                            "street_second_line": "3. Stock, Wohnung 12",
                            "zip": "80331",
                            "city": "München",
                            "state": "Bayern",
                            "country": "de"
                        }
                    }
                ],
                "shares": 12500,
                "share_percentage": 50
            }
        ]
    },
    "directors": [
        {
            "first_name": "Maria",
            "last_name": "Weber",
            "email": "maria@weber.de",
            "phone": "+49 151 12345678",
            "dob": "1978-03-15",
            "nationality": "de",
            "address": {
                "street": "Schillerstraße 5",
                "street_second_line": "2. OG, Einheit 7A",
                "zip": "80336",
                "city": "Munich",
                "state": "Bayern",
                "country": "de"
            },
            "authority": "sole"
        }
    ],
    "documents": {
        "articles_of_association": [
            {
                "type": "musterprotokoll",
                "url": "https://pdfobject.com/pdf/sample.pdf"
            }
        ]
    },
    "notarization": {
        "type": "online",
        "express": false,
        "preferred_timeframe": 7
    },
    "client_reference": "REF-2025-001",
    "client_preferred_language": "de"
}
{
    "response": {
        "result": "success",
        "message": "Incorporation created successfully.",
        "incorporation_id": "450506c1-d1a7-46e2-aca6-41a816805595",
        "status": "submitted",
        "url": "https://app.beglaubigt.de/incorporate/acme-holding-gmbh/123e4567-e89b-12d3-a456-426614174000",
        "documents": {
            "articles_of_association": [
                {
                    "name": "sample.pdf",
                    "type": "individual",
                    "status": "submitted"
                }
            ]
        },
        "notarization": {
            "type": "online",
            "express": true,
            "preferred_timeframe": 7,
            "appointment_status": "pending"
        },
        "client_reference": "REF-2025-001",
        "client_preferred_language": "de",
        "timestamp": "2025-12-01T07:19:30.443Z"
    }
}

Documentation Index

Fetch the complete documentation index at: https://beglaubigt.de/docs/llms.txt

Use this file to discover all available pages before exploring further.

Authorization

To authenticate requests, include an Authorization header with a Bearer token: Authorization: Bearer <token> Example: Bearer sk-123e4567-e89b-12d3-a456-426614174000

Body

name
string
required
The legal name of the company.
Example: Beglaubigt.de GmbH
The type of company being incorporated.
Possible values: gmbh or ug
purpose
string
required
The purpose or business objective of the company.
Example: Digital Notarization Services for Germany and Europe
address
object
required
The address of the company.
business_address
object
required
The business address of the company.
capital
number
required
The total share capital of the company in EUR.
Example: 25000
shareholders
object
required
An object containing arrays of individual and entity shareholders, including their details, addresses, and shareholding information.Note: At least one shareholder is required.
directors
array
required
An array of directors managing the company.
documents
object
A collection of documents related to the company.
notarization
object
required
Details about the notarization process.
client_reference
string
A custom client reference string for tracking purposes.
Example: REF-2025-001
client_preferred_language
string
The preferred language of the client, specified using ISO 639-1 language codes.
Possible values: en, de, es, fr or it
{
    "name": "Beglaubigt.de GmbH",
    "legal_form": "gmbh",
    "purpose": "Durchführung von digitalen Notarisierungsverfahren mit Schwerpunkt auf Deutschland und dem europäischen Raum.",
    "address": {
        "street": "Maximilianstraße 15",
        "street_second_line": "Apartment 3B",
        "zip": "80539",
        "city": "Munich",
        "state": "Bayern",
        "country": "Germany"
    },
    "business_address": {
        "street": "Goethestraße 18",
        "street_second_line": "2. Etage, Büro 5B",
        "zip": "50667",
        "city": "Cologne",
        "state": "Nordrhein-Westfalen",
        "country": "Germany"
    },
    "capital": 25000,
    "shareholders": {
        "individuals": [
            {
                "first_name": "John",
                "middle_name": "Michael",
                "last_name": "Doe",
                "email": "john@doe.de",
                "phone": "+49 151 12345678",
                "dob": "1985-07-10",
                "nationality": "de",
                "address": {
                    "street": "Bahnhofstraße 10",
                    "street_second_line": "Gebäude B, 2. Etage, Raum 204",
                    "zip": "10115",
                    "city": "Berlin",
                    "state": "Berlin",
                    "country": "Germany"
                },
                "shares": 12500,
                "share_percentage": 50
            }
        ],
        "entities": [
            {
                "name": "Acme Holdings GmbH",
                "registration_number": "HRB123456",
                "address": {
                    "street": "Königsallee 50",
                    "street_second_line": "Haus C, 3. Stock, Büro 301",
                    "zip": "40212",
                    "city": "Düsseldorf",
                    "state": "Nordrhein-Westfalen",
                    "country": "de"
                },
                "directors": [
                    {
                        "first_name": "Stefan",
                        "last_name": "Müller",
                        "dob": "1985-06-15",
                        "nationality": "de",
                        "email": "stefan.mueller@example.com",
                        "phone": "+49 151 98765432",
                        "address": {
                            "street": "Bahnhofstraße 10",
                            "street_second_line": "Gebäude B, 2. Etage, Raum 204",
                            "zip": "10115",
                            "city": "Berlin",
                            "state": "Berlin",
                            "country": "de"
                        }
                    },
                    {
                        "first_name": "Laura",
                        "last_name": "Schneider",
                        "dob": "1990-03-22",
                        "nationality": "de",
                        "email": "laura.schneider@example.com",
                        "phone": "+49 160 12345678",
                        "address": {
                            "street": "Lindenweg 7",
                            "street_second_line": "3. Stock, Wohnung 12",
                            "zip": "80331",
                            "city": "München",
                            "state": "Bayern",
                            "country": "de"
                        }
                    }
                ],
                "shares": 12500,
                "share_percentage": 50
            }
        ]
    },
    "directors": [
        {
            "first_name": "Maria",
            "last_name": "Weber",
            "email": "maria@weber.de",
            "phone": "+49 151 12345678",
            "dob": "1978-03-15",
            "nationality": "de",
            "address": {
                "street": "Schillerstraße 5",
                "street_second_line": "2. OG, Einheit 7A",
                "zip": "80336",
                "city": "Munich",
                "state": "Bayern",
                "country": "de"
            },
            "authority": "sole"
        }
    ],
    "documents": {
        "articles_of_association": [
            {
                "type": "musterprotokoll",
                "url": "https://pdfobject.com/pdf/sample.pdf"
            }
        ]
    },
    "notarization": {
        "type": "online",
        "express": false,
        "preferred_timeframe": 7
    },
    "client_reference": "REF-2025-001",
    "client_preferred_language": "de"
}

Response

result
string
Indicates the outcome of the API request.
Possible values: success or error
message
string
Provides a human-readable message detailing the result of the API request.
Example: Incorporation created successfully.
incorporation_id
string
The unique identifier for the created incorporation case in a UUID format.
Example: 450506c1-d1a7-46e2-aca6-41a816805595
status
string
The current status of the incorporation request.
Possible values: initiated, submitted, contact-with-notary-initiated, appointment-confirmed, appointment-completed, waiting-for-deposit-confirmation, completed, blocked, archive, unprocessable
url
string
A unique, case-specific URL for accessing and monitoring the incorporation process.
Examplehttps://app.beglaubigt.de/incorporate/acme-holding-gmbh/123e4567-e89b-12d3-a456-426614174000
documents
array
A collection of documents related to the company.
notarization
object
Details about the notarization process.
client_reference
string
The custom client reference string provided in the request.
Example: REF-2024-001
client_preferred_language
string
The preferred language of the client, specified using ISO 639-1 language codes.
Possible values: en, de, es, fr or it
timestamp
string
The exact date and time when the response was generated, formatted as an ISO 8601 string in UTC.
Example: 2024-12-01T07:19:30.443Z
{
    "response": {
        "result": "success",
        "message": "Incorporation created successfully.",
        "incorporation_id": "450506c1-d1a7-46e2-aca6-41a816805595",
        "status": "submitted",
        "url": "https://app.beglaubigt.de/incorporate/acme-holding-gmbh/123e4567-e89b-12d3-a456-426614174000",
        "documents": {
            "articles_of_association": [
                {
                    "name": "sample.pdf",
                    "type": "individual",
                    "status": "submitted"
                }
            ]
        },
        "notarization": {
            "type": "online",
            "express": true,
            "preferred_timeframe": 7,
            "appointment_status": "pending"
        },
        "client_reference": "REF-2025-001",
        "client_preferred_language": "de",
        "timestamp": "2025-12-01T07:19:30.443Z"
    }
}