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.
name
valfri
Name
country
valfri
Birth country
| Namn | Obligatorisk | Standard | Beskrivning |
|---|---|---|---|
name |
Nej | - | Name |
country |
Nej | - | Birth country |
curl "https://nordapi.ee/api/v1/nobel/laureates?name=Einstein"
curl "https://nordapi.ee/api/v1/nobel/laureates?name=Einstein"
curl "https://nordapi.ee/api/v1/nobel/laureates?country=Norway"
curl "https://nordapi.ee/api/v1/nobel/laureates?country=Japan"
{
"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
}