Quick Start

Get your API keys

Your api keys are given by me specifically. Currently there is no other way to gain an api key. So please do contact me if you wish to interact with the private parts of this api.

Make your first request

Example request:

fetch("https://api.gwapes.com/items")
.then((res) => res.json())
.then((json) => {
    console.log(json)
}).catch((e) => console.log(e))

Last updated