with Wolfram Alpha and FluidForms?
Executes a computation query using the Wolfram Alpha API. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
wolfram_alpha: {
type: "app",
app: "wolfram_alpha",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://www.wolframalpha.com/api/v1/llm-api`,
params: {
appid: `${this.wolfram_alpha.$auth.app_id}`,
input: `10`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
fluidforms: {
type: "app",
app: "fluidforms",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://fluidforms.co/api/zapier/forms`,
headers: {
Authorization: `Bearer ${this.fluidforms.$auth.oauth_access_token}`,
},
})
},
})