RSSAmplifier

BoneQuest Blog · Jan 18, 2022

APPLICATION PROGRAMMING INTERFACE

0
Sign in to vote or save

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…

Read on bonequest.com

Comments

Nothing yet. Say the first thing.

    Sign in to join the conversation.