Discover/Bundesanzeiger API
live

Bundesanzeiger APIbundesanzeiger.de

Search and retrieve German company filings, financial disclosures, and official government announcements from Bundesanzeiger via 4 structured endpoints.

Endpoint health
verified 6d ago
get_publication_detail
get_amtlicher_teil_listings
get_financial_reports
search_publications
4/4 passing latest checkself-healing
Endpoints
4
Updated
21d ago

What is the Bundesanzeiger API?

The Bundesanzeiger API provides access to official German public announcements and company filings across 4 endpoints, returning structured data including company names, publication dates, categories, full text, and PDF links. The search_publications endpoint accepts keyword and category filters and returns paginated results, while get_publication_detail fetches the complete text and metadata of any individual filing.

Try it
Maximum number of results to return.
Search keyword (e.g. company name or topic).
Category ID to filter results. Known values: 1=Amtlicher Teil, 22=Rechnungslegung/Finanzberichte.
api.parse.bot/scraper/7f977f15-eb7e-4e40-a878-b2bbf375069a/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/7f977f15-eb7e-4e40-a878-b2bbf375069a/search_publications?limit=5&query=Siemens&category=1' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace bundesanzeiger-de-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Walkthrough: Bundesanzeiger SDK — search publications, drill into details, browse announcements."""
from parse_apis.bundesanzeiger_api import Bundesanzeiger, Category, PublicationNotFound

client = Bundesanzeiger()

# Search for publications by company name, capped at 5 results.
for pub in client.publications.search(query="Siemens", limit=5):
    print(pub.company, pub.date, pub.title)

# Filter by category using the Category enum.
for pub in client.publications.search(query="Siemens", category=Category.RECHNUNGSLEGUNG, limit=3):
    print(pub.company, pub.category, pub.date)

# Drill into a single publication's full content.
pub = client.publications.search(query="Siemens", limit=1).first()
if pub:
    detail = pub.detail()
    print(detail.url, detail.content_text[:200])

# Browse today's official government announcements.
announcement = client.announcements.list(limit=1).first()
if announcement:
    print(announcement.authority, announcement.title, announcement.reference)

# Search financial reports — typed error handling.
try:
    report = client.financialreports.search(query="Deutsche Bank", limit=1).first()
    if report:
        print(report.company, report.date, report.title)
except PublicationNotFound as exc:
    print(f"Not found: {exc}")

print("exercised: publications.search / Publication.detail / announcements.list / financialreports.search / Category enum / PublicationNotFound error")
All endpoints · 4 totalmissing one? ·

Search for publications in the Bundesanzeiger by keyword. Optionally filter by category. Returns paginated results with company name, category, date, title, and detail URL. Results are ordered by date descending.

Input
ParamTypeDescription
limitintegerMaximum number of results to return.
queryrequiredstringSearch keyword (e.g. company name or topic).
categorystringCategory ID to filter results. Known values: 1=Amtlicher Teil, 22=Rechnungslegung/Finanzberichte.
Response
{
  "type": "object",
  "fields": {
    "items": "array of publication objects with keys: company, category, date, title, detail_url",
    "query": "string echo of the search query",
    "total": "integer total number of results returned"
  },
  "sample": {
    "data": {
      "items": [
        {
          "date": "01.06.2026",
          "title": "Aufsichtsrat",
          "company": "Siemens Mobility GmbH München",
          "category": "Gesellschafts- bekanntmachungen",
          "detail_url": "https://www.bundesanzeiger.de/pub/de/suchen2?3-1.-search~table~panel-rows-0-search~table~row~panel-publication~link"
        }
      ],
      "query": "Siemens",
      "total": 10
    },
    "status": "success"
  }
}

About the Bundesanzeiger API

What the API covers

The Bundesanzeiger is Germany's official public gazette, publishing legally mandated corporate disclosures, financial statements, and government notices. This API exposes four endpoints covering the main content types: full-text keyword search, individual publication retrieval, official government announcements (Amtlicher Teil), and financial report search. Response fields include company, category, date, title, and detail_url on list results, and content_text, content_html, metadata, and pdf_links on detail pages.

Searching and filtering publications

search_publications accepts a required query string and an optional category parameter. Known category values are 1 for Amtlicher Teil (official government notices) and 22 for Rechnungslegung/Finanzberichte (accounting and financial reports). The limit parameter controls result count. get_financial_reports is a focused variant that targets category 22 directly, accepting query and limit and returning the same item shape: company, category, date, title, and detail_url.

Retrieving publication details

get_publication_detail retrieves the full content of a single publication. Pass a url taken from the detail_url field in search results, or supply a query plus item_index to locate and fetch a result by position. The response includes content_text (plain text), content_html (raw HTML), a metadata object with a summary field containing header information, and pdf_links listing any attached PDF documents.

Browsing official government notices

get_amtlicher_teil_listings takes no inputs and returns the current listings in the Amtlicher Teil section. Each item includes authority (the issuing body), title, reference, and detail_url. This endpoint is useful for monitoring recent regulatory and judicial notices without needing a specific search term.

Reliability & maintenanceVerified

The Bundesanzeiger API is a managed, monitored endpoint for bundesanzeiger.de — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when bundesanzeiger.de changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official bundesanzeiger.de API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
6d ago
Latest check
4/4 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Monitor annual financial statements filed by German GmbHs and AGs using get_financial_reports with a company name query.
  • Track new official government notices from specific authorities by polling get_amtlicher_teil_listings and filtering by the authority field.
  • Build a corporate due-diligence tool that retrieves full filing text via get_publication_detail using detail_url references from search results.
  • Alert on insolvency proceedings or liquidation notices by searching search_publications with relevant keywords.
  • Download PDF versions of balance sheets and annual reports by extracting pdf_links from publication detail responses.
  • Aggregate disclosure timelines for a company by querying search_publications with the company name and sorting results by the date field.
  • Research regulatory activity from specific German authorities using get_amtlicher_teil_listings and cross-referencing the reference field.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Bundesanzeiger provide an official developer API?+
Bundesanzeiger does not publish a documented public developer API. Data access is available through the website at bundesanzeiger.de, where publications are browsable and searchable but without a formal programmatic interface for third-party developers.
What does `get_publication_detail` return beyond the text of a filing?+
get_publication_detail returns four distinct fields: content_text (plain text of the filing), content_html (the HTML version), metadata (an object with a summary field containing header-level information such as publisher and date context), and pdf_links (an array of URLs pointing to any attached PDF documents). The url field echoes the resolved address of the fetched page.
Does the API cover historical filings going back many years?+
The API returns results as surfaced by Bundesanzeiger's own search and listing pages, which includes a substantial archive of past filings. However, the depth of historical coverage and any filtering by date range depend on what the underlying source exposes through its search interface — there is no dedicated date-range parameter in the current endpoints. You can fork this API on Parse and revise it to add date filtering if the source supports it via its search parameters.
Can I retrieve filings for a specific federal state (Bundesland) or court district?+
The current endpoints do not include a geographic or court-district filter parameter. search_publications supports keyword and category filtering only. You can fork this API on Parse and revise it to add region or court-district filtering if those parameters are supported by the source.
What categories are available for filtering in `search_publications`?+
Two category IDs are documented: 1 for Amtlicher Teil (official government notices) and 22 for Rechnungslegung/Finanzberichte (accounting and financial disclosures). Bundesanzeiger publishes additional categories such as Bekanntmachungen, Insolvenzbekanntmachungen, and others, but their category IDs are not currently mapped in this API. You can fork it on Parse and revise to add additional category values.
Page content last updated . Spec covers 4 endpoints from bundesanzeiger.de.
Related APIs in Government PublicSee all →
evergabe-online.de API
Search and retrieve public tender opportunities from Germany's e-Vergabe platform by keywords, contract types, CPV codes, and publication dates. Access detailed tender information and discover the latest procurement opportunities across construction and other sectors.
annualreports.com API
Search for and access thousands of international company annual reports in PDF and HTML formats, while filtering by ticker, exchange, industry, sector, company size, and location. Browse company profiles and financial documents across different markets and industries to find the information you need.
govdata.de API
Search and retrieve official German government datasets including demographics, economic indicators, and business statistics, or browse available organizations and categories to discover relevant open data resources. Filter results by high-value datasets and access site statistics to learn about recently updated information from Germany's Federal Open Data Portal.
vergabe.rib.de API
Search and retrieve tender information, award notices, and EU prior information from the RIB eVergabe platform to stay updated on procurement opportunities and contract awards. Get detailed tender specifications and the latest news to monitor bidding opportunities and market developments.
sec.gov API
Search for publicly traded companies and instantly access their SEC filings with details like filing type, date, description, and accession numbers. Find the regulatory documents you need to research company financial information and compliance records.
offenevergaben.at API
Search and explore Austrian public procurement contracts, including details about contracting authorities, suppliers, and product categories. Track government spending by accessing comprehensive information about individual contracts, the organizations that issue them, and the vendors that supply them.
allabolag.se API
Search and retrieve detailed information about Swedish companies, including their industry classifications and historical financial records from annual reports. Access comprehensive company profiles to analyze financial performance and business data for any registered Swedish business.
zvg-portal.de API
Search and browse foreclosure auction listings across all German federal states via the official ZVG Portal. Retrieve paginated auction results, filter by state or court, and fetch full property details including valuations, auction dates, venue information, and document links.