API LINK: https://ghc-applications-api.vercel.app/
This is a simple Todo API built with Express.js and Prisma.
Fetches all todos.
Creates a new todo.
Request body:
{
"title": "string"
}
Updates a todo's completion status.
{
"id": "number",
"completed": "boolean"
}
Deletes a todo.