← 世界数据

诺贝尔奖获得者

GET /nobel/laureates

按姓名或出生国家搜索诺贝尔奖获得者。返回获奖者传记、奖项类别、获奖年份和获奖理由。数据来自 Nobel Foundation。适用于构建可搜索的获奖者数据库、特定国家的诺贝尔奖获得者列表和探索科学及文学成就的教育工具。

参数

name 可选

Name

country 可选

Birth country

请求示例

基本用法
curl "https://nordapi.ee/api/v1/nobel/laureates?name=Einstein"
Search for Einstein
curl "https://nordapi.ee/api/v1/nobel/laureates?name=Einstein"
Laureates from Norway
curl "https://nordapi.ee/api/v1/nobel/laureates?country=Norway"
Laureates from Japan
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
}