> ## Documentation Index
> Fetch the complete documentation index at: https://docs.stardrift.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# List Trips



## OpenAPI

````yaml /openapi.json get /v1/trips
openapi: 3.1.0
info:
  title: Stardrift API
  description: >-
    Read and edit the authenticated user's trips, itineraries, recorded
    bookings, and saved lists. Private records are owner-scoped. MCP tool names
    are documented separately from these HTTP operations.
  version: v1
servers:
  - url: https://stardrift.ai/api
security: []
paths:
  /v1/trips:
    get:
      tags:
        - mcp-server
      summary: List Trips
      operationId: list_trips_v1_trips_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/TripSummary'
                type: array
                title: Response List Trips V1 Trips Get
components:
  schemas:
    TripSummary:
      properties:
        id:
          type: string
          format: uuid
          title: Id
        title:
          anyOf:
            - type: string
            - type: 'null'
          title: Title
        slug:
          anyOf:
            - type: string
            - type: 'null'
          title: Slug
        visibility:
          type: string
          title: Visibility
        is_published:
          type: boolean
          title: Is Published
      type: object
      required:
        - id
        - title
        - slug
        - visibility
        - is_published
      title: TripSummary

````