Skip to content

FishieCat/itch.io-api-upload-check

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 

Repository files navigation

itch.io-api-upload-check

Guide on how to check details of game uploads using itch.io's fee API key

  1. Register an account https://itch.io/register and log in:

    registering you know

  2. Generate an API key on https://itch.io/user/settings/api-keys:

    pressing a button you know

  3. On the game page, for example https://ingdani.itch.io/marianne, right click the page and open the source:

    right click context menu you know

  4. CTRL+F search for game_id and copy the number, 2236407 in this case:

    game_id you know

  5. Insert your API key and game_id number into the /uploads API URL call:

    API key you know

    game_id you know

  6. The result ("Pretty-print" recommended) will show you creation/update dates. Looks like updated_at gets updated when the created_at upload finishes. (It also gets updated if the file gets replaced, however often uploaders on itch first delete the old version and then upload the new one anew)

    api response you see

Here are a bunch of variations for easy copy paste/doubleclick insert replacement:

https://itch.io/api/1/API_KEY_GOES_HERE/game/2236407/uploads
https://itch.io/api/1/API_KEY_GOES_HERE/game/GAME_ID_GOES_HERE/uploads
https://itch.io/api/1/ /game/ /uploads
https://itch.io/api/1//game//uploads

Once you use this 1-2 times, entering '/uploads' into the URL bar should get the last used one from your history, so you don't have to insert the API key each time. Or just bookmark https://itch.io/api/1/[insert_your_api_key_here]/game/GAME_ID_GOES_HERE/uploads (with your API KEY pre-inserted.

Alternative

Use the Tampermonkey userscript itch.io-api-upload-check to automatically add links to the api uploads page for quick checking.

About

Guide on how to check details of game uploads using itch.io's fee API key

Resources

Stars

Watchers

Forks