← Världsdata

Nobelpristagare

GET /nobel/laureates

Search Nobelpris laureates by namn or birth land. Returnerar laureate biographies, prize kategorier, år awarded, and motivations. Data från Nobelstiftelsen. Användbart för att bygga searchable laureate databaser, land-specifik Nobel winner listor, and pedagogisk verktyg exploring scientific and literary achievement.

Parametrar

name valfri

Name

country valfri

Birth country

Exempelförfrågningar

Grundläggande användning
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"

Livesvar

{
  "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
}