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

# List the partner's vessels (scope: vessels:fleet:read)

> Every vessel in the partner's fleet (identity only — no crew).

For a customer partner the fleet is the employer account's vessels (the same
source the dashboard uses); for an external partner it is the per-contract
attachment set. Returns an empty list when the partner has no vessels.



## OpenAPI

````yaml /api-reference/openapi.json get /api/v2/employers/me/vessels
openapi: 3.1.0
info:
  title: crewpass-api-v2
  description: >-
    CrewPass V2 Partner API — a scope-gated, consent-intersected, multi-tenant
    front door onto existing CrewPass crew/vessel/compliance data.
  version: 0.1.0
servers: []
security: []
paths:
  /api/v2/employers/me/vessels:
    get:
      tags:
        - employers
      summary: 'List the partner''s vessels (scope: vessels:fleet:read)'
      description: >-
        Every vessel in the partner's fleet (identity only — no crew).


        For a customer partner the fleet is the employer account's vessels (the
        same

        source the dashboard uses); for an external partner it is the
        per-contract

        attachment set. Returns an empty list when the partner has no vessels.
      operationId: list_vessels_api_v2_employers_me_vessels_get
      parameters:
        - name: authorization
          in: header
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Authorization
        - name: X-Partner-API-Key
          in: header
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: X-Partner-Api-Key
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VesselsListResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - PartnerApiKey: []
components:
  schemas:
    VesselsListResponse:
      properties:
        items:
          items:
            $ref: '#/components/schemas/VesselListItem'
          type: array
          title: Items
      type: object
      required:
        - items
      title: VesselsListResponse
      description: '`GET /api/v2/employers/me/vessels` — the partner''s vessels (fleet).'
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    VesselListItem:
      properties:
        vessel_id:
          type: string
          title: Vessel Id
        vessel_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Vessel Name
        imo:
          anyOf:
            - type: string
            - type: 'null'
          title: Imo
        mmsi:
          anyOf:
            - type: string
            - type: 'null'
          title: Mmsi
        flag_state:
          anyOf:
            - type: string
            - type: 'null'
          title: Flag State
        vessel_type:
          anyOf:
            - type: string
            - type: 'null'
          title: Vessel Type
      type: object
      required:
        - vessel_id
      title: VesselListItem
      description: One vessel in the partner's fleet (`GET /employers/me/vessels`).
    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
  securitySchemes:
    PartnerApiKey:
      type: http
      scheme: bearer
      description: Partner API key (`cpk_live_*` / `cpk_test_*`) as a Bearer token.

````