import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
apiverve: {
type: "app",
app: "apiverve",
}
},
async run({steps, $}) {
const data = {
"value": `https://pipedream.com/`,
}
return await axios($, {
method: "post",
url: `https://api.apiverve.com/v1/qrcodegenerator`,
headers: {
"x-api-key": `${this.apiverve.$auth.api_key}`,
},
data,
})
},
})
Return the temperature, humidity, and more for a given location. See the documentation
Lookup if an IP address is in a blacklist. See the documentation
APIVerve uses API keys for authentication. When you connect your APIVerve account, Pipedream securely stores the keys so you can easily authenticate to APIVerve APIs in both code and no-code steps.