GET /nobel/laureates
Recherchez Nobel Prize laureates by name ou birth country. Renvoie laureate biographies, prize categories, years awarded, et motivations. Données du Nobel Foundation. Utile pour créer des searchable laureate databases, country-specific Nobel winner lists, et educational tools exploring scientific et literary achievement.
name
optionnel
Name
country
optionnel
Birth country
| Nom | Requis | Par défaut | Description |
|---|---|---|---|
name |
Non | - | Name |
country |
Non | - | 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
}