with Intelitruth 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: {
intelitruth: {
type: "app",
app: "intelitruth",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://gateway.intelitruth.com/get_profile.api`,
params: {
BUSINESS_ACCOUNT_ID: `${this.intelitruth.$auth.business_account_id}`,
API_KEY: `${this.intelitruth.$auth.api_key}`,
MEMBER_ID: `${this.intelitruth.$auth.member_id}`,
},
})
},
})
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}`,
},
})
},
})