This site does not allow itself to be embedded. You can still read it on the original site — the toolbar below keeps your place in the directory.
BONEQUEST API 
 
 DOCUMENTATION 
 
 EXAMPLES 
 PYTHON3: FETCH EPISODE TITLE 
 #!/usr/bin/env python3
import json
from urllib.request import urlopen

with urlopen("https://www.bonequest.com/api/v2/episode/69") as resp:
 data = json.loads(resp.read())

print(data["episodes"][0]["title"])
 
 GO: RANDOM…
Comments
Nothing yet. Say the first thing.
Sign in to join the conversation.