with Spydra and Dungeon Fighter Online?
The Spydra API lets you automate interactions with the Spydra search engine, enabling developers to query various databases and information repositories. With Spydra's API on Pipedream, one can build powerful serverless workflows that respond to events, process data, and integrate with countless other services. You could create triggers that kick off actions whenever specific conditions are met, or schedule searches to ensure you're always informed with the latest data.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
spydra: {
type: "app",
app: "spydra",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.spydra.$auth.membership_id}.spydra.app/tokenize/${this.spydra.$auth.app_id}/status`,
headers: {
"X-API-KEY": `${this.spydra.$auth.api_key}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
dungeon_fighter_online: {
type: "app",
app: "dungeon_fighter_online",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.dfoneople.com/df/servers`,
params: {
apikey: `${this.dungeon_fighter_online.$auth.api_key}`,
},
})
},
})