Deploy a powerful, easy-to-configure form backend without writing a single line of server side code.
Go to siteBasin helps you build custom forms for your web projects remarkably fast, without the massive engineering lift. It works out of the box with all your favorite tools and frameworks with no dependencies, special libraries, or extra configuration needed. Simply point your forms to Basin and it will:
Basin saves you the time and hassle of building, monitoring, and maintaining your own form backend or API.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
basin: {
type: "app",
app: "basin",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://usebasin.com/api/v1/submissions`,
params: {
api_token: `${this.basin.$auth.api_key}`,
},
})
},
})
Basin uses API keys for authentication. When you connect your Basin account, Pipedream securely stores the keys so you can easily authenticate to Basin APIs in both code and no-code steps.
Go to the Dashboard for your form and then select the 'Integrations' tab. Each form has it's own API key.