Node package manager
Emit new event with the latest count of downloads for an npm package. See the documentation.
Emit new event when a new version of an npm package is published. See the documentation
List the top-ranking websites globally. See the documentation
Returns the number of monthly data points remaining in your Similarweb account. See the documentation
Retrieves the global rank of a specific website using Similarweb's Digital Rank API. See the documentation
The Similarweb DigitalRank API provides insights into website traffic and engagement, offering metrics like global rank, country rank, and category rank of a domain. With this API on Pipedream, you can automate competitive analysis, monitor changes in website popularity, and integrate web ranking data into your marketing, SEO, or content strategies. Pipedream's serverless platform allows you to create workflows that react to this data in real-time, connecting to other services to act upon these insights.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
similarweb_digitalrank_api: {
type: "app",
app: "similarweb_digitalrank_api",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.similarweb.com/user-capabilities`,
params: {
api_key: `${this.similarweb_digitalrank_api.$auth.api_key}`,
},
})
},
})