with Octave and Rapid URL Indexer?
Download the report for a specific project. See the documentation
Get the status of a specific project. See the documentation
Submit a new project for indexing. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
octave: {
type: "app",
app: "octave",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.octavehq.com/api/v2/api-key/list`,
headers: {
"api_key": `${this.octave.$auth.api_key}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
rapid_url_indexer: {
type: "app",
app: "rapid_url_indexer",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://rapidurlindexer.com/wp-json/api/v1/credits/balance`,
headers: {
"X-API-Key": `${this.rapid_url_indexer.$auth.api_key}`,
},
})
},
})