GET /nobel/prizes
Parcourez les données du prix Nobel par année et/ou catégorie (physique, chimie, médecine, littérature, paix, économie). Renvoie les détails du prix, notamment les noms des lauréats, les motivations et les parts attribuées. Données issues de l'API officielle de la Nobel Foundation. Utile pour les plateformes éducatives, les applications d'histoire, les chronologies de réalisations scientifiques et les fonctionnalités de culture générale.
year
optionnel
Year
category
optionnel
Category
| Nom | Requis | Par défaut | Description |
|---|---|---|---|
year |
Non | - | Year |
category |
Non | - | Category |
curl "https://nordapi.ee/api/v1/nobel/prizes?year=2025"
curl "https://nordapi.ee/api/v1/nobel/prizes?year=2025"
curl "https://nordapi.ee/api/v1/nobel/prizes?category=physics"
curl "https://nordapi.ee/api/v1/nobel/prizes?year=2024&category=peace"
{
"count": 6,
"data": [
{
"category": "Chemistry",
"date_awarded": "2025-10-08",
"laureates": [
{
"motivation": "for the development of metal–organic frameworks",
"name": "Susumu Kitagawa",
"portion": "1/3"
},
{
"motivation": "for the development of metal–organic frameworks",
"name": "Richard Robson",
"portion": "1/3"
},
{
"motivation": "for the development of metal–organic frameworks",
"name": "Omar M. Yaghi",
"portion": "1/3"
}
],
"year": "2025"
},
{
"category": "Economic Sciences",
"date_awarded": "2025-10-13",
"laureates": [
{
"motivation": "for having identified the prerequisites for sustained growth through technological progress",
"name": "Joel Mokyr",
"portion": "1/2"
},
{
"motivation": "for the theory of sustained growth through creative destruction",
"name": "Philippe Aghion",
"portion": "1/4"
},
{
"motivation": "for the theory of sustained growth through creative destruction",
"name": "Peter Howitt",
"portion": "1/4"
}
],
"year": "2025"
},
{
"category": "Literature",
"date_awarded": "2025-10-09",
"laureates": [
{
"motivation": "for his compelling and visionary oeuvre that, in the midst of apocalyptic terror, reaffirms the power of art",
"name": "László Krasznahorkai",
"portion": "1"
}
],
"year": "2025"
},
{
"category": "Peace",
"date_awarded": "2025-10-10",
"laureates": [
{
"motivation": "for her tireless work promoting democratic rights for the people of Venezuela and for her struggle to achieve a just and peaceful transition from dictatorship to democracy",
"name": "Maria Corina Machado",
"portion": "1"
}
],
"year": "2025"
},
{
"category": "Physics",
"date_awarded": "2025-10-07",
"laureates": [
{
"motivation": "for the discovery of macroscopic quantum mechanical tunnelling and energy quantisation in an electric circuit",
"name": "John Clarke",
"portion": "1/3"
},
{
"motivation": "for the discovery of macroscopic quantum mechanical tunnelling and energy quantisation in an electric circuit",
"name": "Michel H. Devoret",
"portion": "1/3"
},
{
"motivation": "for the discovery of macroscopic quantum mechanical tunnelling and energy quantisation in an electric circuit",
"name": "John M. Martinis",
"portion": "1/3"
}
],
"year": "2025"
},
{
"category": "Physiology or Medicine",
"date_awarded": "2025-10-06",
"laureates": [
{
"motivation": "for their discoveries concerning peripheral immune tolerance",
"name": "Mary E. Brunkow",
"portion": "1/3"
},
{
"motivation": "for their discoveries concerning peripheral immune tolerance",
"name": "Frederick J. Ramsdell",
"portion": "1/3"
},
{
"motivation": "for their discoveries concerning peripheral immune tolerance",
"name": "Shimon Sakaguchi",
"portion": "1/3"
}
],
"year": "2025"
}
],
"success": true
}