# German Funding Monitor (`sgforce/german-funding-monitor`) Actor

Monitor new German public funding programmes from official public feeds. Export clean grant and subsidy rows for research, advisory, sales, API, CSV, and alert workflows.

- **URL**: https://apify.com/sgforce/german-funding-monitor.md
- **Developed by:** [Francesco Scilipoti](https://apify.com/sgforce) (community)
- **Categories:** Business
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

$1.50 / 1,000 funding programme rows

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/platform/integrations/mcp.md).

If your project is in a different language, use the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).


# README

## German Funding Monitor

Monitor new public German funding programmes from the official Foerderdatenbank feed and export clean rows for research, advisory, sales, API, CSV, and alerts.

Use it when you want to notice new grants, subsidies, loans, or public funding programmes in Germany without checking funding pages every day.

### What it does

- Reads the official Foerderdatenbank funding-programme RSS feed.
- Normalizes each programme into a clean dataset row.
- Enriches rows from the public detail page where available.
- Supports keyword, region, eligible-recipient, and funding-type filters.
- Supports `newOnly` mode for scheduled monitoring.
- Returns source-health and state information in the `SUMMARY` key.

### Start with these runs

Start with a small search so you can inspect the rows before scheduling anything.

#### AI / KI funding in Germany

```json
{
  "keyword": "KI",
  "region": "bundesweit",
  "maxItems": 10
}
````

#### Grants for companies

```json
{
  "eligibleFor": "Unternehmen",
  "fundingType": "Zuschuss",
  "maxItems": 20
}
```

#### Daily monitoring

The first run creates the baseline. Later runs with the same `stateKey` return only programmes that were not seen before.

```json
{
  "newOnly": true,
  "stateKey": "digital-funding-daily",
  "maxItems": 20,
  "keyword": "Digitalisierung"
}
```

### Good fit

| User | Use it for |
| --- | --- |
| Agencies and consultants | New funding topics for client advisory, newsletters, or market scans |
| Founders and SMEs | A lightweight alert when a relevant public programme appears |
| Grant scouts | Normalized rows that can be exported to CSV, Sheets, Airtable, or a CRM |
| Economic development teams | A simple feed of current programme signals without manual checking |

### Output fields

Each row contains:

- `title`
- `summary`
- `funder`
- `fundingType`
- `fundingArea`
- `fundingRegion`
- `eligibleEntities`
- `publishedAt`
- `sourceFreshness`
- `leadReason`
- `detailUrl`
- `rankScore`

Example row shape:

```json
{
  "title": "KMU-innovativ: Informations- und Kommunikationstechnologien",
  "funder": "Bundesministerium fuer Bildung und Forschung",
  "fundingType": "Zuschuss",
  "fundingArea": "Digitalisierung; Forschung und Innovation",
  "fundingRegion": "bundesweit",
  "eligibleEntities": ["Unternehmen", "Forschungseinrichtung"],
  "sourceFreshness": "current",
  "leadReason": "Matched keyword KI; matched region bundesweit",
  "detailUrl": "https://www.foerderdatenbank.de/..."
}
```

Fields vary because public funding pages vary. The row always keeps the official `detailUrl` so the source can be checked before anyone acts on it.

### SUMMARY and source health

Each run writes a `SUMMARY` record to the key-value store. Check it when a run is empty or lower than expected.

The summary includes:

- normalized input
- source URL
- raw RSS item count
- parsed item count
- emitted item count
- filter counts
- source health
- `newOnly` state when monitoring mode is used

### Why not just search manually?

Manual search is fine for a one-off check. This is for repeated checks that should return the same kind of rows every time.

It gives you:

- official-source rows instead of scraped search snippets
- stable JSON/CSV output
- cheap small runs
- a `newOnly` mode for scheduled alerts
- a `SUMMARY` object that makes empty runs explainable

### Source and limits

This version uses the official Foerderdatenbank RSS feed for current funding programmes. The broader website search is not used in this release because direct non-browser requests currently hit a Radware loader. Stable public data is better here than fragile browser automation.

Important limits:

- It is not a full historical funding database.
- It does not guarantee that every German funding programme is present.
- Detail-page enrichment is used only where the public detail page is reachable.
- Always check the official detail page before applying.
- The Actor does not provide legal, tax, or funding advice.

### Pricing

This Actor charges per emitted dataset row:

- `$0.0015` per funding programme row
- 10 emitted rows cost about `$0.015`
- 100 emitted rows cost about `$0.15`

There is no Actor-start fee at launch. If a run returns zero rows, there are no dataset rows to charge for.

### Related German opportunity Actors

- [German Tender Monitor](https://apify.com/sgforce/german-tender-monitor) for public procurement tenders.
- [German Trade Fair Exhibitor Monitor](https://apify.com/sgforce/german-trade-fair-exhibitor-monitor) for public exhibitor directory rows.

### Changelog

#### 0.1.0

- Initial funding-programme monitor.
- Official RSS source.
- Detail-page enrichment where available.
- Keyword, region, eligible-recipient, and funding-type filters.
- `newOnly` monitoring state.
- Source-health summary.

# Actor input Schema

## `maxItems` (type: `integer`):

Maximum funding programme rows returned. Keep this low for first tests and scheduled checks.

## `keyword` (type: `string`):

Optional case-insensitive keyword filter across title, summary, funding area, region, eligible entities, and funder.

## `region` (type: `string`):

Optional filter for funding region, e.g. bundesweit, Bayern, Nordrhein-Westfalen, Sachsen, EU.

## `eligibleFor` (type: `string`):

Optional filter for eligible recipients, e.g. Unternehmen, Kommune, Hochschule, Existenzgründer.

## `fundingType` (type: `string`):

Optional filter for funding type, e.g. Zuschuss, Darlehen, Bürgschaft, Beteiligung.

## `newOnly` (type: `boolean`):

Return only funding programmes that have not been seen before for this monitoring state.

## `stateKey` (type: `string`):

Optional stable key for newOnly state, e.g. startup-funding-daily or ai-grants-weekly.

## `resetSeen` (type: `boolean`):

Clear the previous seen state before this run.

## Actor input object example

```json
{
  "maxItems": 20,
  "newOnly": false,
  "resetSeen": false
}
```

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {};

// Run the Actor and wait for it to finish
const run = await client.actor("sgforce/german-funding-monitor").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {}

# Run the Actor and wait for it to finish
run = client.actor("sgforce/german-funding-monitor").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{}' |
apify call sgforce/german-funding-monitor --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=sgforce/german-funding-monitor",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "German Funding Monitor",
        "description": "Monitor new German public funding programmes from official public feeds. Export clean grant and subsidy rows for research, advisory, sales, API, CSV, and alert workflows.",
        "version": "0.1",
        "x-build-id": "FqgFG50wFFzPKWYFN"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/sgforce~german-funding-monitor/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-sgforce-german-funding-monitor",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/acts/sgforce~german-funding-monitor/runs": {
            "post": {
                "operationId": "runs-sync-sgforce-german-funding-monitor",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor and returns information about the initiated run in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/runsResponseSchema"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/acts/sgforce~german-funding-monitor/run-sync": {
            "post": {
                "operationId": "run-sync-sgforce-german-funding-monitor",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "properties": {
                    "maxItems": {
                        "title": "Max items",
                        "minimum": 1,
                        "maximum": 100,
                        "type": "integer",
                        "description": "Maximum funding programme rows returned. Keep this low for first tests and scheduled checks.",
                        "default": 20
                    },
                    "keyword": {
                        "title": "Keyword filter",
                        "type": "string",
                        "description": "Optional case-insensitive keyword filter across title, summary, funding area, region, eligible entities, and funder."
                    },
                    "region": {
                        "title": "Region filter",
                        "type": "string",
                        "description": "Optional filter for funding region, e.g. bundesweit, Bayern, Nordrhein-Westfalen, Sachsen, EU."
                    },
                    "eligibleFor": {
                        "title": "Eligible recipient filter",
                        "type": "string",
                        "description": "Optional filter for eligible recipients, e.g. Unternehmen, Kommune, Hochschule, Existenzgründer."
                    },
                    "fundingType": {
                        "title": "Funding type filter",
                        "type": "string",
                        "description": "Optional filter for funding type, e.g. Zuschuss, Darlehen, Bürgschaft, Beteiligung."
                    },
                    "newOnly": {
                        "title": "Only new programmes",
                        "type": "boolean",
                        "description": "Return only funding programmes that have not been seen before for this monitoring state.",
                        "default": false
                    },
                    "stateKey": {
                        "title": "Monitoring state key",
                        "type": "string",
                        "description": "Optional stable key for newOnly state, e.g. startup-funding-daily or ai-grants-weekly."
                    },
                    "resetSeen": {
                        "title": "Reset seen programmes",
                        "type": "boolean",
                        "description": "Clear the previous seen state before this run.",
                        "default": false
                    }
                }
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
