SurveyWhere is API Development going?

Next generation backend experience for developers

January is the comprehensive platform for backend API development that lets you build, integrate, test, and deploy all in one place.

Try in playgroundTry in playground

Talk with us to discuss your thoughts, feedback, comments, or any other topics.

workflow('CreateUserWorkflow', {
tag: 'users',
trigger: trigger.http({
method: 'post',
path: '/',
}),
actions: {
createUser: action.database.insert({
table: useTable('Users'),
columns: [
useField('name', '@trigger:body.name'),
useField('email', '@trigger:body.email'),
],
}),
},
});

Create an API endpoint that can be accessed via an HTTP request using the trigger.http trigger. Can be found in a Routing extension (koa, express, hono.dev, etc.).