active Legal form GmbH

Cumulus Ventures GmbH

Feldafing ·HRB 194267 München ·cumulusventures.de
Part 1 / 2

Structured data

Parsed, typed and queryable directly through the API.

Overview

Legal form
GmbH
Address
Seestraße 26
82340 Feldafing
Commercial register
HRB 194267, München
Registration date
September 16, 2011
Industry
Erbringung von Beratungsleistungen auf dem Gebiet der Informationstechnologie
Managementtätigkeiten von sonstigen Holdinggesellschaften
Beteiligungsgesellschaften
Purpose
Halten und Verwalten von Beteiligungen an anderen Unternehmen im eigenen Namen, Erbringung allgemeiner Beratungs- und Geschäftsführungsdienstleistungen mit Ausnahme von Rechtsberatung, Steuerberatung und Finanzberatung sowie damit verbundene Geschäfte, soweit hierfür keine behördliche Genehmigung erforderlich ist.
1 products, services and keywords · viewable with an API key Get API key →

Financials

Why are there no newer figures?

German corporations such as GmbH, UG and AG must file their annual statement with the Unternehmensregister (the federal company register) within twelve months of the end of the fiscal year. The statement for 2011 was therefore due by the end of 2012 – no newer one has been filed there to date.

Who has to publish what?

What must be published depends on company size, measured by total assets, revenue and headcount: a company belongs to a size class when it stays below two of the three limits on two consecutive balance-sheet dates. Current limits:

  • Micro-companies up to €450,000 total assets · €900,000 revenue · 10 employees
    Only deposit a balance sheet, which is not publicly viewable. No figures appear here.
  • Small companies up to €7.5 million total assets · €15 million revenue · 50 employees
    Publish an abridged balance sheet without a profit and loss statement. Revenue and net income are then missing.
  • Medium-sized companies up to €25 million total assets · €50 million revenue · 250 employees
    Publish the balance sheet and an abridged profit and loss statement.
  • Large companies (above that)
    Publish the full annual statement including the management report.

Sole traders and partnerships with a natural person as fully liable partner (such as GbR, OHG or a classic KG) are not required to disclose at all. Figures then only exist if they were published voluntarily.

Other typical reasons:

  • The company has fallen below the size limits and has only deposited its statements since, instead of publishing them.
  • The company was dissolved, merged, liquidated or is insolvent. After that, statements are usually no longer published.
  • The filing was missed or is late. The Federal Office of Justice then imposes fines, but publication often still happens years later.

As soon as a newer statement is published, it will appear here.

The most recent published annual statement covers fiscal year 2011. No newer statement appears to have been published since, so these figures do not reflect the company's current situation.

Total assets 2011
271.553 €
Net income 2011
−35.533 €

Balance sheet

2011
Assets 271,6 k
  • Current Assets 96,1 % 261,0 k
  • Net Loss Not Covered by Equity 3,9 % 10,5 k
Liabilities and Equity 271,6 k
  • Liabilities 98,9 % 268,6 k
  • Provisions 1,1 % 3,0 k
  • Equity 0,0 % 0
Full balance sheet line items with an API key Get API key →

Authorized representatives

  • Barbara Gallmann since 2023 Managing Director
  • Jürgen F. Gallmann since 2011 Managing Director

Ownership & holdings

Shareholders

  • Jürgen F. Gallmann 100.0 % 25k €

Ultimate beneficial owners (UBOs)

1 hold ≥ 25%
1 more beneficial owners · viewable with an API key Get API key →

Holds shares in

History

  1. 2023
  2. 11.05.
    Member entry
    Barbara Gallmann · Managing Director
  3. 2011
  4. 22.09.
    Change of company name
    Cumulus Ventures GmbH
  5. 22.09.
    Member entry
    Jürgen F. Gallmann · Managing Director
  6. 22.09.
    Incorporation
    Cumulus Ventures GmbH
  7. 22.09.
    Change of bylaws
    Cumulus Ventures GmbH
  8. 22.09.
    Change of share capital
    Cumulus Ventures GmbH
  9. 22.09.
    Change of address
    Cumulus Ventures GmbH
  10. 22.09.
    Change of legal form
    Gesellschaft mit beschränkter Haftung
3 more entries Get API key →
Part 2 / 2

Raw data & documents

Original filings, full-text markdown and PDFs — full content via the API.

Annual statements (full text)

Published reports as markdown — including management report, balance sheet, P&L and appendix.

  • 2011 Jahresabschluss
Read full report Get API key →

Register documents

PDF documents straight from the court register — fetched on demand via the :code endpoint.

  • Current extract (AD)
  • Chronological extract (CD)
  • Structured content (SI, XML)
  • Shareholders list
  • Articles of association
Unlock with API key Get API key →

Website content

Structured markdown rendering of the company's public website — perfect for enrichment and AI pipelines.

Unlock with API key Get API key →
AI assistants

This company in Claude or ChatGPT

Connect handelsregister.ai to your AI assistant once – then simply ask it about this and any other company.

All MCP tools in the documentation →
  1. In Claude, go to Settings → Connectors → “Add custom connector”.
  2. Enter this server URL: https://mcp.handelsregister.ai/mcp
  3. Sign in with your handelsregister.ai account in the dialog. The connector is then available in every chat under “Tools”.
  1. In ChatGPT, go to Settings → Connectors → Advanced, enable Developer mode and choose “Create”.
  2. Enter the name “handelsregister”, authentication OAuth and this server URL: https://mcp.handelsregister.ai/mcp
  3. Sign in with your handelsregister.ai account in the dialog and enable the connector in the chat under “More”.
  1. Run once in your terminal:
    claude mcp add --transport http handelsregister https://mcp.handelsregister.ai/mcp \
      --header "X-API-Key: YOUR_API_KEY"
  2. Done – the server is now available in every Claude Code session.

For your own applications: pass the server as a tool, authenticated with your API key.

from openai import OpenAI

client = OpenAI()
response = client.responses.create(
    model="gpt-6-astra",
    input="Cumulus Ventures GmbH: Geschäftsführung, Gesellschafter, Kennzahlen?",
    tools=[{
        "type": "mcp",
        "server_label": "handelsregister",
        "server_url": "https://mcp.handelsregister.ai/mcp",
        "headers": {"X-API-Key": "YOUR_API_KEY"},
        "require_approval": "never",
    }],
)
print(response.output_text)

Cursor, Windsurf and other MCP clients: add this block to the MCP configuration.

{
  "mcpServers": {
    "handelsregister": {
      "url": "https://mcp.handelsregister.ai/mcp",
      "headers": { "X-API-Key": "YOUR_API_KEY" }
    }
  }
}

Replace YOUR_API_KEY with your key – once you are signed in it is filled in here automatically.

Try it in the chat:
What do you know about Cumulus Ventures GmbH? Use entity_id 46fdcd65f0b7a4eb74afc5e2389e7367 and show me the management, shareholders and the latest key figures.
Profile · Financials · People · Documents

Structured data and full text — per company

From annual statements as HTML to UBO lists: enable each field individually via the features parameter. One API, all data.

  • Key figures Revenue, employee count, total assets, net income — per fiscal year.
  • Authorized representatives Current and former managing directors, board members, signatories — with roles and date ranges.
  • Publications Official commercial register publications including date and full text.
  • Gesellschafter Current shareholder structure with stakes and contributions.
  • Wirtschaftlich Berechtigte (UBOs) Ultimate beneficial owners as recorded in the German transparency register.
  • Beteiligungen Stakes this company holds in other entities.
  • Bilanz Full balance sheet line items from published annual statements.
  • Gewinn- und Verlustrechnung P&L line items per fiscal year.
  • Jahresabschlüsse (HTML) Published annual financial statements rendered as HTML.
  • Insolvenzbekanntmachungen Notices from the official insolvency registers.
  • News Recent mentions of the company from external news sources.
Unlock every field with an API key Get API key →
Code · AI agents · No-code · Workflows

Plug into any stack

Whether you're building a classical API integration, an AI agent, or a no-code workflow — this data slots in.

Use this data in your app

Grab an API key and pull this structured commercial register data straight from your application — no scraping, no PDFs.