Path of Exile is a free-to-play action role-playing video game developed and published by Grinding Gear Games
Go to siteimport { axios } from "@pipedream/platform"
export default defineComponent({
props: {
path_of_exile: {
type: "app",
app: "path_of_exile",
}
},
async run({steps, $}) {
return await axios($, {
url: `http://api.pathofexile.com/leagues`,
})
},
})
The Path of Exile API does not require authentication.