GET /nobel/laureates
Busque Nobel Prize laureates por nombre or birth country. Devuelve laureate biographies, prize categories, years awarded, and motivations. Datos de the Nobel Foundation. Útil para crear searchable laureate databases, country-specific Nobel winner lists, and educational tools exploring scientific and literary achievement.
name
opcional
Name
country
opcional
Birth country
| Nombre | Requerido | Predeterminado | Descripcion |
|---|---|---|---|
name |
No | - | Name |
country |
No | - | 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
}