← Weltdaten

Nobelpreisträger

GET /nobel/laureates

Durchsuchen Sie Nobelpreis-Prize laureates by name oder birth country. Liefert laureate biographies, prize categories, years awarded, und motivations. Daten von the Nobel Foundation. Nützlich für building searchable laureate databases, country-specific Nobel winner lists, und educational tools exploring scientific und literary achievement.

Parameter

name optional

Name

country optional

Birth country

Beispielanfragen

Grundlegende Verwendung
curl "https://nordapi.ee/api/v1/nobel/laureates?name=Einstein"
Search for Einstein
curl "https://nordapi.ee/api/v1/nobel/laureates?name=Einstein"
Laureates from Norway
curl "https://nordapi.ee/api/v1/nobel/laureates?country=Norway"
Laureates from Japan
curl "https://nordapi.ee/api/v1/nobel/laureates?country=Japan"

Live-Antwort

{
  "count": 1,
  "data": [
    {
      "birth_country": "Germany",
      "birth_date": "1879-03-14",
      "name": "Albert Einstein",
      "prizes": [
        {
          "category": "Physics",
          "motivation": "for his services to Theoretical Physics, and especially for his discovery of the law of the photoelectric effect",
          "year": "1921"
        }
      ]
    }
  ],
  "success": true
}