with Retailed and Enrichley?
Gets the API usage information for the Retailed API. See the documentation
Checks the validity of a single email address using Enrichley. See the documentation
The Retailed API enables developers to tap into a trove of retail data, ranging from product details to inventory management. Through Pipedream, one can use this API to craft automated workflows that react to specific triggers or schedule tasks to regularly fetch data. With seamless integration capabilities, Pipedream can connect the Retailed API to numerous other apps, allowing for a rich ecosystem of automations that can save time, optimize retail operations, and enhance data analysis.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
retailed: {
type: "app",
app: "retailed",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.retailed.io/api/v1/stockx/search`,
headers: {
"x-api-key": `${this.retailed.$auth.api_token}`,
"Content-Type": `application/json`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
enrichley: {
type: "app",
app: "enrichley",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.enrichley.io/api/v1/me`,
headers: {
"accept": `application/json`,
"X-API-Key": `${this.enrichley.$auth.api_key}`,
},
})
},
})