---
title: "Add Event To Itinerary"
method: POST
path: "/trips/{trip_id}/events/add"
tags: ["events"]
---

# Add Event To Itinerary

`POST /trips/{trip_id}/events/add`

Add a hand-entered event (concert, tour, museum, dining, …) to the trip.

## Path parameters

- `trip_id` string, required

## Headers

- `x-client-id` string, nullable

## Request body

- AddEventRequest
  - `name` string, required
  - `start_datetime` string, date-time, nullable
  - `end_datetime` string, date-time, nullable
  - `venue_name` string, nullable
  - `address` string, nullable
  - `place_id` string, nullable
  - `category` string, nullable
  - `description` string, nullable
  - `city` string, nullable
  - `total_price` number, nullable
  - `currency` string
  - `confirmation_number` string, nullable

## Response `200`

Successful Response

- AddEventResponse
  - `activity_id` string, required
  - `activity` object, required
  - `warnings` string[]

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.dev/stardrift/apis/fastapi.md) · [All operations](https://skmtc.dev/stardrift/apis/fastapi/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/stardrift/fastapi/revisions/00746572572a/schema)
