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

# List Ship Options

> List ships as lightweight value/label pairs for filter dropdowns.

Returns all ships in the user's organization, sorted alphabetically.



## OpenAPI

````yaml /openapi.json get /api/v1/shared/ships/options
openapi: 3.1.0
info:
  title: Seamind Backend
  version: 0.1.0
servers: []
security: []
paths:
  /api/v1/shared/ships/options:
    get:
      tags:
        - shared-ships
      summary: List Ship Options
      description: |-
        List ships as lightweight value/label pairs for filter dropdowns.

        Returns all ships in the user's organization, sorted alphabetically.
      operationId: list_ship_options_api_v1_shared_ships_options_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/OptionItem'
                type: array
                title: Response List Ship Options Api V1 Shared Ships Options Get
      security:
        - HTTPBearer: []
components:
  schemas:
    OptionItem:
      properties:
        value:
          type: string
          title: Value
        label:
          type: string
          title: Label
      type: object
      required:
        - value
        - label
      title: OptionItem
      description: Lightweight value/label pair for filter dropdowns.
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````