---
title: "Create Trip"
method: POST
path: "/v1/trips"
tags: ["mcp-server"]
---

# Create Trip

`POST /v1/trips`

Create a new draft trip with `num_days` blank days, ready for
add_place/add_day_note.

Mirrors the in-app create path: a Trip plus its primary conversation link
(the sole trip association — see docs/CHAT_TRIP_SPLIT.md), then an empty
plan. Returns the trip summary, including the new trip_id.

## Request body

- ApiMcpServerCreateTripRequest
  - `title` string, required
  - `num_days` integer

## Response `200`

Successful Response

- ApiMcpServerTripSummary
  - `id` string, uuid, required
  - `title` string, nullable, required
  - `slug` string, nullable, required
  - `visibility` string, required
  - `is_published` boolean, required
  - `start_date` string, date, nullable
  - `end_date` string, date, nullable
  - `updated_at` string, date-time, nullable

## Other responses

- `422` — Validation Error

## Changes

- **2026-09-24** `1060a62bfafc` — 3 info
  - added the optional property `end_date` to the response with the `200` status
  - added the optional property `start_date` to the response with the `200` status
  - added the optional property `updated_at` to the response with the `200` status

[Change history](https://skmtc.dev/stardrift/apis/fastapi/changes/v1/trips/post.md)

---

[API](https://skmtc.dev/stardrift/apis/fastapi.md) · [All operations](https://skmtc.dev/stardrift/apis/fastapi/llms.txt) · [OpenAPI document](https://skmtc.dev/stardrift/apis/fastapi/revisions/f6559d3df7e9?raw)
