Trigger workflows on an interval or cron schedule.
Provides a list of genres which may be used for filtering games via the MobyGames API. See the documentation
List all platforms available for filtering games via the MobyGames API. See the documentation
The Schedule app in Pipedream is a powerful tool that allows you to trigger workflows at regular intervals, ranging from every minute to once a year. This enables the automation of repetitive tasks and the scheduling of actions to occur without manual intervention. By leveraging this API, you can execute code, run integrations, and process data on a reliable schedule, all within Pipedream's serverless environment.
The MobyGames API provides access to a vast database of video game information, including titles, platforms, release dates, and more. In Pipedream, you can leverage this API to create powerful integrations and automated workflows. You might fetch game data to curate personalized game recommendations, sync release information with your calendar, or compile game statistics for analysis.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
mobygames: {
type: "app",
app: "mobygames",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.mobygames.com/v1/games`,
params: {
api_key: `${this.mobygames.$auth.api_key}`,
},
})
},
})