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

# Import Social Post

> Import an Instagram post/reel or TikTok video into a new saved list.

The same import the iOS share extension starts; the share extension's own
route takes only its `saved:import` token, which OAuth clients never hold.



## OpenAPI

````yaml /openapi.json post /v1/saved/import
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/saved/import:
    post:
      tags:
        - mcp-server
      summary: Import Social Post
      description: >-
        Import an Instagram post/reel or TikTok video into a new saved list.


        The same import the iOS share extension starts; the share extension's
        own

        route takes only its `saved:import` token, which OAuth clients never
        hold.
      operationId: import_social_post_v1_saved_import_post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SocialImportRequest'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ImportStartedOut'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    SocialImportRequest:
      properties:
        url:
          type: string
          title: Url
        visibility:
          anyOf:
            - type: string
              enum:
                - public
                - private
            - type: 'null'
          title: Visibility
      type: object
      required:
        - url
      title: SocialImportRequest
    ImportStartedOut:
      properties:
        list_id:
          type: string
          format: uuid
          title: List Id
        status:
          type: string
          title: Status
        already_imported:
          type: boolean
          title: Already Imported
          default: false
      type: object
      required:
        - list_id
        - status
      title: ImportStartedOut
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError

````