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.
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}`,
},
})
},
})
export default defineComponent({
async run({ steps, $ }) {
const text = ' Hello world! ';
return text.trim()
},
})