# Nobel Prize Winners Dataset from Wikidata

**Use case:** 

Retrieve detailed information about Nobel Prize winners, including names, awards, years, and countries. Access structured data directly from Wikidata.

## Input

```json
{
  "mode": "sparql",
  "query": "Douglas Adams",
  "qids": [
    "Q42",
    "Q64",
    "Q1"
  ],
  "sparql": "SELECT ?person ?personLabel ?award ?awardLabel ?year ?countryLabel WHERE { ?person wdt:P166 ?award . ?award wdt:P31 wd:Q7191 . OPTIONAL { ?person wdt:P569 ?birth . } OPTIONAL { ?person wdt:P27 ?country . } SERVICE wikibase:label { bd:serviceParam wikibase:language \"en\". } } ORDER BY DESC(?year) LIMIT 500",
  "language": "en",
  "maxResults": 500,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "qid": {
    "label": "QID",
    "format": "text"
  },
  "label": {
    "label": "Label",
    "format": "text"
  },
  "description": {
    "label": "Description",
    "format": "text"
  },
  "instanceOf": {
    "label": "Instance Of",
    "format": "text"
  },
  "aliases": {
    "label": "Aliases",
    "format": "text"
  },
  "wikidataUrl": {
    "label": "Wikidata URL",
    "format": "link"
  },
  "claims": {
    "label": "Claims (JSON)",
    "format": "text"
  },
  "sparqlBindings": {
    "label": "SPARQL Bindings",
    "format": "text"
  },
  "mode": {
    "label": "Mode",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Wikidata Scraper — Search, Entities & SPARQL API](https://apify.com/logiover/wikidata-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/logiover/wikidata-scraper) to learn more, explore other use cases, and run it yourself.