Simple json API for Pokemon Trivia and quiz questions.
- Endpoint: https://pokemontrivia-1-c0774976.deta.app/
/trivia- returns a random trivia question
GET /trivia| Parameter | Type | Description |
|---|---|---|
endpoint |
string |
Required. Type of trivia question. Can be one of the following: images, bonus, gen1, gen2, gen3, gen4, gen5, gen6, gen7 |
import requests
url = "https://pokemontrivia-1-c0774976.deta.app/trivia"
response = requests.get(url, params={"endpoint": "images"})
print(response.url)
print(response.json())"https://pokemontrivia-1-c0774976.deta.app/trivia?endpoint=images"
{
"id": 163,
"label": "163",
"specific": {
"hints": [
"Held item that makes Pokemon evolve upon level up",
"The kings most prized possession"
],
"image": "http://pokemontrivia-1-c0774976.deta.app/assets/images/kings_rock.png",
"imageText": "Name this item",
"word": "kings rock"
}
}- Clone the repo
- Install dependencies with
pip install -r requirements.txt - Run
python main.pyto start the server