dreamwiver 15 Posted January 17, 2023 Hello, Is there any call on the API that returns a Item list with all the tradeable items in the game? Or any call that brings all the items? I've been browsing for a while but I cannot find anything. Thank you
dreamwiver 15 Author Posted January 18, 2023 Here is a script to get a JSON file with all the tradeables items import json import requests # Get JSON from URL url = "https://raw.githubusercontent.com/osrsbox/osrsbox-db/master/docs/items-complete.json" response = requests.get(url) data = response.json() # Create new list with only ID and name new_data = [] for item in data: if data[item]["tradeable_on_ge"] == True and data[item]["members"] == False: new_data.append({"id": data[item]["id"], "name": data[item]["name"]}) # Save new list to a file with open("raw.json", "w") as outfile: json.dump(new_data, outfile)
Recommended Posts
Archived
This topic is now archived and is closed to further replies.