Path of Exile is a free-to-play action role-playing video game developed and published by Grinding Gear Games
Go to siteThe Path of Exile API offers a trove of in-game information, from player stats to item data. Using Pipedream, you can automate interactions with the API to monitor game updates, track item prices, automate notifications for trades, and integrate with other services for analytics or enhanced gameplay experiences.
import { 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`,
})
},
})
Automated Trade Offers Notifications: Set up a Pipedream workflow that polls the Path of Exile trade API for items you're interested in. When a new listing meets your criteria, automatically send a notification via Discord or Slack, ensuring you never miss out on a critical trade.
League Stat Tracking: Create a Pipedream workflow that retrieves your character's league stats at regular intervals. Log this data into Google Sheets or Airtable to analyze your gameplay over time or share your progress with friends or your gaming community.
Price Watcher for Rare Items: Monitor the market for rare items with a Pipedream workflow. When the price drops below a threshold you set, trigger an alert through SMS or email. Connect this workflow with a database like MongoDB to track historical price data for deeper market insights.