Skip to main content
GET
/
v1
/
incorporation
/
{incorporation_id}
Get Incorporation
curl --request GET \
  --url https://api.beglaubigt.de/v1/incorporation/{incorporation_id}
{
    "response": {
        "result": "success",
        "message": "Incorporation fetched successfully.",
        "incorporation_id": "123e4567-e89b-12d3-a456-426614174000",
        "name": "Acme Holdings GmbH",
        "legal_form": "gmbh",
        "purpose": "Durchführung von digitalen Notarisierungsverfahren mit Schwerpunkt auf Deutschland und dem europäischen Raum.",
        "capital": 12500,
        "address": {
            "street": "Maximilianstraße 15",
    		"street_second_line": "Apartment 3B",
		    "zip": "80539",
    		"city": "Munich",
    		"state": "Bayern",
    		"country": "de"
        },
		"business_address": {
            "street": "Goethestraße 18",
            "street_second_line": "2. Etage, Büro 5B",
            "zip": "50667",
            "city": "Cologne",
			"state": "Nordrhein-Westfalen",
            "country": "de"
        },
        "status": "submitted",
        "url": "https://app.beglaubigt.de/incorporate/acme-holding-gmbh/123e4567-e89b-12d3-a456-426614174000",
        "directors": [
            {
                "first_name": "Maria",
                "last_name": "Weber",
                "email": "maria@weber.de",
                "phone": "+491234567890",
                "dob": "1978-03-15",
				"nationality": "de",
                "address": {
                    "street": "Rathenauplatz 7",
                    "street_second_line": "1. Stock, Raum 3A",
                    "zip": "90489",
                    "city": "Nuremberg",
					"state": "Bayern",
                    "country": "de"
                },
                "authority": "sole"
            }
        ],
        "documents": {
            "articles_of_association": [
                {
                    "name": "sample.pdf",
                    "type": "musterprotokoll",
                    "status": "submitted"
                }
            ]
        },
        "shareholders": {
            "individuals": [
                {
                    "first_name": "John",
                    "middle_name": "Michael",
                    "last_name": "Doe",
                    "email": "john.doe@example.com",
                    "phone": "+491234567890",
                    "dob": "1985-07-10",
                    "nationality": "de",
                    "address": {
                        "street": "Lindenallee 12",
                        "street_second_line": "EG, Büro 1",
                        "zip": "60594",
                        "city": "Frankfurt am Main",
						"state": "Hessen",
                        "country": "de"
                    },
                    "shares": 12500,
                    "share_percentage": 50
                }
            ],
            "entities": [
                {
                    "name": "Acme Ventures GmbH",
                    "registration_number": "HRB123456",
                    "address": {
                        "street": "Kaiserstraße 21",
                        "street_second_line": "4. OG, Zimmer 402",
                        "zip": "60311",
                        "city": "Frankfurt",
						"state": "Hessen",
                        "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"
                            }
                        }
                    ],
                    "shares": 5000,
                    "share_percentage": 5
                }
            ]
        },
        "notarization": {
            "type": "online",
            "express": false,
            "preferred_timeframe": 7,
            "date": "2025-05-16",
            "time": "14:30",
            "appointment_status": "confirmed",
            "notary": {
                "office": "Notariat Schiller & Partner",
                "name": "Dr. Anna Becker",
                "email": "dr.becker@notariat-schiller.de",
                "phone": "+49 89 12345678",
                "address": "Schillerstraße 15, 10117, Berlin"
            }
        },
        "client_reference": "REF-2025-001",
        "client_preferred_language": "de",
        "created_at": "2025-04-12T08:00:00.0000+00:00"
    }
}

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

Path Parameters

incorporation_id
string
required
The unique identifier of the incorporation to retrieve.
Example123e4567-e89b-12d3-a456-426614174000

Response

result
string
Indicates the outcome of the API request.
Possible valuessuccess or error
message
string
Provides a human-readable message detailing the result of the API request.
ExempleIncorporation fetched successfully.
incorporation_id
string
The unique identifier for the incorporation in a UUID format.
Example123e4567-e89b-12d3-a456-426614174000
name
string
The legal name of the company.
Example: Acme Holdings GmbH
The type of company incorporated.
Possible values: gmbh or ug
purpose
string
The purpose or business objective of the company.
Example: Digital Notarization Services for Germany and Europe
capital
number
The total share capital of the company in EUR.
Example: 25000
hrb_number
string
The commercial register number (Handelsregisternummer) for incorporations.
Example: HRB 123456
court_district
string
The local court (Amtsgericht) where the company is registered.
Example: Berlin (Charlottenburg)
is_registered
boolean
Indicates whether the company is already officially entered in the commercial register.
Example: true
address
object
The address of the company.
business_address
object
The business address of the company.
status
string
The status of the incorporation. Possible values: initiated, submitted, contact-with-notary-initiated, appointment-confirmed, appointment-completed, waiting-for-deposit-confirmation, completed, blocked, archive, unprocessable
url
string
The URL of the incorporation.
Examplehttps://app.beglaubigt.de/incorporate/acme-holding-gmbh/123e4567-e89b-12d3-a456-426614174000
directors
array
An array of directors managing the company.
documents
object
A collection of documents related to the company.
shareholders
object
An object containing arrays of individual and entity shareholders, including their details, addresses, and shareholding information.
notarization
object
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
created_at
string
The timestamp at which the incorporation was created, formatted as an ISO 8601 string (UTC).
Example: 2025-06-15T08:00:00.000Z
{
    "response": {
        "result": "success",
        "message": "Incorporation fetched successfully.",
        "incorporation_id": "123e4567-e89b-12d3-a456-426614174000",
        "name": "Acme Holdings GmbH",
        "legal_form": "gmbh",
        "purpose": "Durchführung von digitalen Notarisierungsverfahren mit Schwerpunkt auf Deutschland und dem europäischen Raum.",
        "capital": 12500,
        "address": {
            "street": "Maximilianstraße 15",
    		"street_second_line": "Apartment 3B",
		    "zip": "80539",
    		"city": "Munich",
    		"state": "Bayern",
    		"country": "de"
        },
		"business_address": {
            "street": "Goethestraße 18",
            "street_second_line": "2. Etage, Büro 5B",
            "zip": "50667",
            "city": "Cologne",
			"state": "Nordrhein-Westfalen",
            "country": "de"
        },
        "status": "submitted",
        "url": "https://app.beglaubigt.de/incorporate/acme-holding-gmbh/123e4567-e89b-12d3-a456-426614174000",
        "directors": [
            {
                "first_name": "Maria",
                "last_name": "Weber",
                "email": "maria@weber.de",
                "phone": "+491234567890",
                "dob": "1978-03-15",
				"nationality": "de",
                "address": {
                    "street": "Rathenauplatz 7",
                    "street_second_line": "1. Stock, Raum 3A",
                    "zip": "90489",
                    "city": "Nuremberg",
					"state": "Bayern",
                    "country": "de"
                },
                "authority": "sole"
            }
        ],
        "documents": {
            "articles_of_association": [
                {
                    "name": "sample.pdf",
                    "type": "musterprotokoll",
                    "status": "submitted"
                }
            ]
        },
        "shareholders": {
            "individuals": [
                {
                    "first_name": "John",
                    "middle_name": "Michael",
                    "last_name": "Doe",
                    "email": "john.doe@example.com",
                    "phone": "+491234567890",
                    "dob": "1985-07-10",
                    "nationality": "de",
                    "address": {
                        "street": "Lindenallee 12",
                        "street_second_line": "EG, Büro 1",
                        "zip": "60594",
                        "city": "Frankfurt am Main",
						"state": "Hessen",
                        "country": "de"
                    },
                    "shares": 12500,
                    "share_percentage": 50
                }
            ],
            "entities": [
                {
                    "name": "Acme Ventures GmbH",
                    "registration_number": "HRB123456",
                    "address": {
                        "street": "Kaiserstraße 21",
                        "street_second_line": "4. OG, Zimmer 402",
                        "zip": "60311",
                        "city": "Frankfurt",
						"state": "Hessen",
                        "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"
                            }
                        }
                    ],
                    "shares": 5000,
                    "share_percentage": 5
                }
            ]
        },
        "notarization": {
            "type": "online",
            "express": false,
            "preferred_timeframe": 7,
            "date": "2025-05-16",
            "time": "14:30",
            "appointment_status": "confirmed",
            "notary": {
                "office": "Notariat Schiller & Partner",
                "name": "Dr. Anna Becker",
                "email": "dr.becker@notariat-schiller.de",
                "phone": "+49 89 12345678",
                "address": "Schillerstraße 15, 10117, Berlin"
            }
        },
        "client_reference": "REF-2025-001",
        "client_preferred_language": "de",
        "created_at": "2025-04-12T08:00:00.0000+00:00"
    }
}