Fördergeber
Endpoint: Grant Provider
Die Grant Provider API ermöglicht es, alle Fördermittelgeber im System abzurufen. Jeder Provider kann in Grants und Matching-Ergebnissen referenziert werden.
GET /api/v1/grant_providers
Gibt eine Liste aller Fördermittelgeber zurück.
Erforderlicher Scope: grants:read
Beispiel-Request
GET /api/v1/grant_providers
Authorization: Bearer <API_TOKEN>
Beispiel-Response
{
"grant_providers": [
{
"id": "b1e2c3d4-5678-1234-9abc-def012345678",
"name": "Deutsche Bundesstiftung Umwelt",
"slug": "deutsche-bundesstiftung-umwelt",
"type": "public_foundation",
"type_label": "Öffentliche Stiftung",
"description": "Die Deutsche Bundesstiftung Umwelt fördert innovative, modellhafte und lösungsorientierte Vorhaben zum Schutz der Umwelt.",
"website": "https://www.dbu.de/",
"email": "info@dbu.de",
"phone": "+49 541 9633-0",
"fax": "+49 541 9633-190",
"city": "Osnabrück",
"address": {
"street_and_number": "An der Bornau 2",
"postal_code": "49090",
"city": "Osnabrück",
"state": "Niedersachsen",
"country": "Deutschland",
"complete_address": "An der Bornau 2, 49090 Osnabrück, Niedersachsen"
},
"geo_location": {
"latitude": 52.2689,
"longitude": 8.0471,
"federal_state": "Niedersachsen",
"federal_state_code": "NI",
"county": "Osnabrück"
},
"social_media": {
"linkedin": "https://www.linkedin.com/company/dbu",
"facebook": "https://www.facebook.com/umweltstiftung",
"instagram": "https://www.instagram.com/dbu_umwelt",
"youtube": "https://www.youtube.com/user/DBUstiftung"
},
"grants_count": 42,
"created_at": "2024-01-15T10:30:00Z",
"updated_at": "2025-12-01T14:22:00Z"
}
],
"meta": {
"total": 1938,
"page": 1,
"per_page": 25,
"total_pages": 78
}
}
Grant Provider Objekt
| Feld |
Typ |
Beschreibung |
id |
UUID |
Eindeutige ID des Providers |
name |
String |
Name des Fördermittelgebers |
slug |
String |
URL-freundlicher Bezeichner |
type |
String |
Typ des Providers (siehe Typen unten) |
type_label |
String |
Lokalisierte Bezeichnung des Typs |
description |
String |
Beschreibung des Providers (kann null sein) |
website |
String |
Website-URL (kann null sein) |
email |
String |
E-Mail-Adresse (kann null sein) |
phone |
String |
Telefonnummer (kann null sein) |
fax |
String |
Faxnummer (kann null sein) |
city |
String |
Stadt (für schnellen Zugriff, kann null sein) |
address |
Object |
Vollständige Adresse (kann null sein) |
geo_location |
Object |
Geo-Koordinaten und Bundesland (kann null sein) |
social_media |
Object |
Social-Media-Profile (kann null sein) |
grants_count |
Integer |
Anzahl der veröffentlichten Förderprogramme |
created_at |
String |
Erstellungszeitpunkt (ISO 8601) |
updated_at |
String |
Letztes Update (ISO 8601) |
Address Objekt
| Feld |
Typ |
Beschreibung |
street_and_number |
String |
Straße und Hausnummer |
address_line_2 |
String |
Zusätzliche Adresszeile |
postal_code |
String |
Postleitzahl |
city |
String |
Stadt |
state |
String |
Bundesland |
country |
String |
Land |
complete_address |
String |
Vollständige formatierte Adresse |
Geo Location Objekt
| Feld |
Typ |
Beschreibung |
latitude |
Float |
Breitengrad |
longitude |
Float |
Längengrad |
federal_state |
String |
Bundesland (aus Geocoding) |
federal_state_code |
String |
Bundesland-Code (z.B. "NI", "BY") |
county |
String |
Landkreis/Kreis |
Social Media Objekt
| Feld |
Typ |
Beschreibung |
linkedin |
String |
LinkedIn-Profil-URL |
facebook |
String |
Facebook-Seiten-URL |
instagram |
String |
Instagram-Profil-URL |
youtube |
String |
YouTube-Kanal-URL |
Provider-Typen
| Typ |
Beschreibung |
federal_ministry |
Bundesministerium |
state_ministry |
Landesministerium |
municipality |
Kommune/Gemeinde |
public_agency |
Öffentliche Einrichtung |
european_union |
Europäische Union |
federal_funding_bank |
Staatliche Förderbank |
private_foundation |
Private Stiftung |
public_foundation |
Öffentliche Stiftung |
political_foundation |
Politische Stiftung |
federal_foundation |
Bundesstiftung |
industry_chamber |
Wirtschaftsverband/Kammer |
research_institution |
Forschungseinrichtung |
university |
Hochschule/Universität |
non_profit_organization |
Gemeinnützige Organisation |
church_organization |
Kirchliche Organisation |
lottery_fund |
Lotteriegesellschaft |
private_company |
Privates Unternehmen |
other_type |
Sonstige |
Hinweise
- Grant Provider werden in Grant- und Matching-Responses als
grant_provider referenziert.
- Die Liste ist paginiert (Standard: 25 pro Seite).
- Alle Objekt-Felder (
address, geo_location, social_media) sind nur vorhanden, wenn mindestens ein Wert darin gesetzt ist.
- Der
federal_state_code entspricht dem ISO 3166-2:DE Code (z.B. "BY" für Bayern, "NW" für Nordrhein-Westfalen).
Siehe auch: Grants, Matching