---
title: "Create todo"
method: POST
path: "/todos/"
tags: ["📝 Todo list"]
---

# Create todo

`POST /todos/`

The "Create Todo" API endpoint allows you to create a new todo item by providing the title and description as a request body.

By accessing this endpoint and providing the necessary information, a new todo item will be created in the system.

## Request body

- object
  - `description` string
  - `title` string

## Response `200`

Create todo

- object
  - `data` object
    - `__v` number
    - `_id` string
    - `createdAt` string
    - `description` string
    - `isDone` boolean
    - `title` string
    - `updatedAt` string
  - `message` string
  - `statusCode` number
  - `success` boolean

---

[API](https://skmtc.net/hiteshchoudhary-ssesph/apis/freeapi.md) · [All operations](https://skmtc.net/hiteshchoudhary-ssesph/apis/freeapi/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/hiteshchoudhary-ssesph/freeapi/versions/a9f3a290e4dc/schema)
