import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
airtop: {
type: "app",
app: "airtop",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.airtop.ai/api/v1/sessions`,
headers: {
Authorization: `Bearer ${this.airtop.$auth.api_key}`,
},
params: {
offset: `0`,
limit: `10`,
},
})
},
})
Emit new event when a new session is created in Airtop. See the documentation
Create a new browser window in an active session. See the documentation
Extract data or ask questions about page content using AI. See the documentation
Airtop uses API keys for authentication. When you connect your Airtop account, Pipedream securely stores the keys so you can easily authenticate to Airtop APIs in both code and no-code steps.