Jump to content
Frequently Asked Questions
  • Are you not able to open the client? Try following our getting started guide
  • Still not working? Try downloading and running JarFix
  • Help! My bot doesn't do anything! Enable fresh start in client settings and restart the client
  • How to purchase with PayPal/OSRS/Crypto gold? You can purchase vouchers from other users
  • Query all tradeable items


    dreamwiver

    Recommended Posts

    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

    Link to comment
    Share on other sites

    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)

     

    Link to comment
    Share on other sites

    Create an account or sign in to comment

    You need to be a member in order to leave a comment

    Create an account

    Sign up for a new account in our community. It's easy!

    Register a new account

    Sign in

    Already have an account? Sign in here.

    Sign In Now
    ×
    ×
    • Create New...

    Important Information

    We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.