with Fathom and Gemini Public?
Emit new event when a new recording is created. See the documentation
Get the transcript of a recording. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
fathom: {
type: "app",
app: "fathom",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.fathom.ai/external/v1/teams`,
headers: {
Authorization: `Bearer ${this.fathom.$auth.oauth_access_token}`,
},
})
},
})
The Gemini Public API provides a gateway to interact with Gemini, a cryptocurrency exchange platform, allowing users to access market data, such as current prices, volume, and order book information. Through Pipedream, developers can harness this data to build powerful, serverless workflows that react to market changes, automate trading analysis, and integrate cryptocurrency data into external applications or services.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
gemini_public: {
type: "app",
app: "gemini_public",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.gemini.com/v1/symbols`,
})
},
})