/api/v1/programsListe der Förderprogramme, gefiltert und geblättert.
| Parameter | Typ | Bedeutung |
|---|---|---|
| q | string | Volltextsuche über Name, Fördergeber und Kurzbeschreibung. |
| category | string | Kategorie-Slug, zum Beispiel heizung oder fenster-türen. |
| level | string | bund, land, eu, kommune oder sonstige. |
| fundingType | string | zuschuss, kredit, bürgschaft, beteiligung, steuervorteil, beratung, prämie, sonstiges. |
| targetGroup | string | privat, unternehmen, gründer, verein, kommune und weitere. |
| region | string | Kürzel des Bundeslandes, zum Beispiel BY. Bundesweite Programme sind immer enthalten. |
| status | string | aktiv, ausgelaufen oder geplant. |
| limit | number | Anzahl pro Seite, Standard 25, Maximum 100. |
| offset | number | Versatz für die Blätterung, Standard 0. |
Aufruf
curl "https://antragio.com/api/v1/programs?category=heizung®ion=BY&limit=2"Antwort, gekürzt
{
"total": 37,
"limit": 2,
"offset": 0,
"count": 2,
"filters": { "q": null, "category": "heizung", "level": null, "region": "BY" },
"programs": [
{
"slug": "beispiel-programm",
"name": "...",
"provider": "...",
"level": "bund",
"regions": ["DE"],
"targetGroups": ["privat"],
"categories": ["heizung"],
"fundingType": "zuschuss",
"amountMin": null,
"amountMax": null,
"ratePercent": null,
"shortDescription": "...",
"requirements": ["..."],
"deadline": null,
"applicationUrl": "...",
"sourceUrl": "...",
"status": "aktiv",
"confidence": "hoch",
"lastVerified": "2026-01-01T00:00:00.000Z",
"url": "https://antragio.com/programm/beispiel-programm"
}
],
"disclaimer": "...",
"license": "..."
}