The Neutrino API platform provides a highly available, performant global network that lets developers focus on their product and not on building and maintaining complex in-house tools not relevant to their core business.
Write custom Node.js code and use any of the 400k+ npm packages available. Refer to the Pipedream Node docs to learn more.
With the Neutrino API, you can build many different types of applications and
services, including:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
neutrino: {
type: "app",
app: "neutrino",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://neutrinoapi.net/email-validate`,
params: {
email: `YOUR_EMAIL_ADDRESS`,
"api-key": `${this.neutrino.$auth.api_key}`,
"user-id": `${this.neutrino.$auth.user_id}`,
},
})
},
})
// To use previous step data, pass the `steps` object to the run() function
export default defineComponent({
async run({ steps, $ }) {
// Return data to use it in future steps
return steps.trigger.event
},
})