GET /nobel/laureates
按姓名或出生国家搜索诺贝尔奖获得者。返回获奖者传记、奖项类别、获奖年份和获奖理由。数据来自 Nobel Foundation。适用于构建可搜索的获奖者数据库、特定国家的诺贝尔奖获得者列表和探索科学及文学成就的教育工具。
name
可选
Name
country
可选
Birth country
| 名称 | 必填 | 默认值 | 描述 |
|---|---|---|---|
name |
否 | - | Name |
country |
否 | - | 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
}