← Maailman data

Nobel-palkinnot

GET /nobel/prizes

Selaa Nobel-palkintotietoja vuoden ja/tai kategorian mukaan (fysiikka, kemia, lääketiede, kirjallisuus, rauha, taloustiede). Palauttaa palkintotiedot mukaan lukien laureaattien nimet, perustelut ja osuudet. Data viralliselta Nobel-säätiön API:lta. Hyödyllinen opetusalustoille, historiasovelluksille ja tietovisaominaisuuksille.

Parametrit

year valinnainen

Year

category valinnainen

Category

Esimerkkipyynnöt

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

Reaaliaikainen vastaus

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