with npm and Bright Data?
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
Extract search engine results using Bright Data SERP API. See the documentation
Send an API call to a URL and get the HTML back. Enables you to bypass anti-bot measures, manages proxies, and solves CAPTCHAs automatically for easier web data collection. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
bright_data: {
type: "app",
app: "bright_data",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.brightdata.com/customer/balance`,
headers: {
Authorization: `Bearer ${this.bright_data.$auth.api_key}`,
},
})
},
})