← Maailman data

Nobel-laureaatit

GET /nobel/laureates

Hae Nobel Prize laureates nimellä or birth country. Palauttaa laureate biographies, prize categories, years awarded, and motivations. Data the Nobel Foundation. Hyödyllinen building searchable laureate databases, country-specific Nobel winner lists, and educational tools exploring scientific and literary achievement.

Parametrit

name valinnainen

Name

country valinnainen

Birth country

Esimerkkipyynnöt

Peruskäyttö
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"

Reaaliaikainen vastaus

{
  "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
}