---
title: "Create List"
method: POST
path: "/saved/lists"
tags: ["saved"]
---

# Create List

`POST /saved/lists`

## Request body

- CreateListRequest
  - `title` string, required
  - `source` 'manual' | 'chat' | 'tiktok' | 'ig' | 'shared'
  - `source_url` string, nullable
  - `city` string, nullable
  - `cover_image_url` string, nullable

## Response `200`

Successful Response

- SavedListOut
  - `id` string, uuid, required
  - `title` string, required
  - `source` string, required
  - `source_url` string, nullable, required
  - `source_author` string, nullable, required
  - `city` string, nullable, required
  - `cover_image_url` string, nullable, required
  - `item_count` integer, required
  - `is_shared` boolean, required
  - `status` string, required
  - `failed_reason` 'post_unavailable', nullable
  - `created_at` string, required
  - `updated_at` string, required
  - `visibility` 'public' | 'private', required
  - `slug` string, nullable, required
  - `public_url` string, nullable, required
  - `routes` SavedRouteOut[]
    - `id` string, uuid, required
    - `list_id` string, uuid, required
    - `name` string, required
    - `activity` string, required
    - `status` string, required
    - `chains` string[], required
    - `length_m` integer, required
    - `ascent_m` integer, required
    - `descent_m` integer, required
    - `min_elev_m` number, required
    - `max_elev_m` number, required
    - `profile` object, nullable
    - `tag_lengths` object, nullable
    - `osm_name` string, nullable
    - `claimed_length_km` number, nullable
    - `claimed_ascent_m` number, nullable
    - `place_item_id` string, uuid, nullable

## 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)
