GET /nobel/prizes
Просмотр данных о Нобелевских премиях по годам и/или категориям (физика, химия, медицина, литература, мир, экономика). Возвращает детали премий, включая имена лауреатов, мотивации и размеры долей. Данные из официального API Нобелевского фонда. Полезно для образовательных платформ, исторических приложений, хронологий научных достижений и функций викторин.
year
необязательный
Year
category
необязательный
Category
| Название | Обязательный | По умолчанию | Описание |
|---|---|---|---|
year |
Нет | - | Year |
category |
Нет | - | 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
}