← 世界数据

诺贝尔奖

GET /nobel/prizes

按年份和/或类别(物理、化学、医学、文学、和平、经济学)浏览诺贝尔奖数据。返回奖项详情,包括获奖者姓名、获奖理由和份额。数据来自 Nobel Foundation 官方 API。适用于教育平台、历史应用、科学成就时间线和问答功能。

参数

year 可选

Year

category 可选

Category

请求示例

基本用法
curl "https://nordapi.ee/api/v1/nobel/prizes?year=2025"
All 2025 Nobel Prizes
curl "https://nordapi.ee/api/v1/nobel/prizes?year=2025"
Physics Nobel Prizes
curl "https://nordapi.ee/api/v1/nobel/prizes?category=physics"
Peace prizes in 2024
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
}