# Bundesanzeiger — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Search and retrieve official German business announcements, financial disclosures, and company filings from the Bundesanzeiger with full-text search and category filtering. Access detailed publication information and financial reports to monitor corporate announcements and regulatory filings.

**Category:** Government & Public Data | **Website:** [bundesanzeiger.de/](https://bundesanzeiger.de/) | **Docs:** [parse.bot/marketplace/856b7533-1a73-475d-940c-c3d0233e115d/bundesanzeiger-de-api](https://parse.bot/marketplace/856b7533-1a73-475d-940c-c3d0233e115d/bundesanzeiger-de-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-bundesanzeiger-de-api-856b7533/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_amtlicher_teil_listings

Browse the most recent official government announcements (Amtlicher Teil). Returns all currently listed announcements with authority, title, reference, and detail URL. Content changes daily as new announcements are published.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-bundesanzeiger-de-api-856b7533/get_amtlicher_teil_listings \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_financial_reports

Search specifically for financial reports and accounting disclosures (Rechnungslegung/Finanzberichte) by company name. Equivalent to search_publications with category=22. Returns results ordered by date descending.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Maximum number of results to return. |
| `query` | string | Yes | Search keyword (company name). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-bundesanzeiger-de-api-856b7533/get_financial_reports \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":"<integer>","query":"<string>"}'
```

### get_publication_detail

Retrieve the full text and metadata of a specific publication. Provide either a direct detail URL or a query with item_index to find and fetch the publication. The scraper performs a search and navigates to the detail page within the same session. Detail URLs are session-dependent; prefer using query with item_index for reliability.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `item_index` | integer | No | Zero-based index of the item in search results when using query. |
| `query` | string | No | Search keyword used to find the publication. Required if url is not provided. |
| `url` | string | No | Direct URL to the publication detail page (from search_publications results detail_url field). Session-dependent; best used immediately after search_publications in the same session. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-bundesanzeiger-de-api-856b7533/get_publication_detail \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"item_index":"<integer>","query":"<string>","url":"<string>"}'
```

### search_publications

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.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category` | string | No | Category ID to filter results. Known values: 1=Amtlicher Teil, 22=Rechnungslegung/Finanzberichte. |
| `limit` | integer | No | Maximum number of results to return. |
| `query` | string | Yes | Search keyword (e.g. company name or topic). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-bundesanzeiger-de-api-856b7533/search_publications \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category":"<string>","limit":"<integer>","query":"<string>"}'
```
