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.
Go to siteWith 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}`,
},
})
},
})
Neutrino uses API keys for authentication. When you connect your Neutrino account, Pipedream securely stores the keys so you can easily authenticate to Neutrino APIs in both code and no-code steps.
To retrieve your API keys,