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

# Get Crew Profile

> Get a user's crew profile. Returns blank fields if the row hasn't
been provisioned yet (first-time access).

Authz: self OR admin/office-admin in the same org (via ``load_user_for_crew_edit``).



## OpenAPI

````yaml /openapi.json get /api/v1/crew/users/{user_id}/profile
openapi: 3.1.0
info:
  title: Seamind Backend
  version: 0.1.0
servers: []
security: []
paths:
  /api/v1/crew/users/{user_id}/profile:
    get:
      tags:
        - crew-profile
      summary: Get Crew Profile
      description: >-
        Get a user's crew profile. Returns blank fields if the row hasn't

        been provisioned yet (first-time access).


        Authz: self OR admin/office-admin in the same org (via
        ``load_user_for_crew_edit``).
      operationId: get_crew_profile_api_v1_crew_users__user_id__profile_get
      parameters:
        - name: user_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: User Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CrewProfileResponseDTO'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    CrewProfileResponseDTO:
      properties:
        userId:
          type: string
          format: uuid
          title: Userid
        dateOfBirth:
          anyOf:
            - type: string
              format: date
            - type: 'null'
          title: Dateofbirth
        placeOfBirth:
          anyOf:
            - type: string
            - type: 'null'
          title: Placeofbirth
        nationality:
          anyOf:
            - type: string
            - type: 'null'
          title: Nationality
        gender:
          anyOf:
            - type: string
            - type: 'null'
          title: Gender
        religion:
          anyOf:
            - type: string
            - type: 'null'
          title: Religion
        maritalStatus:
          anyOf:
            - type: string
            - type: 'null'
          title: Maritalstatus
        weddingDate:
          anyOf:
            - type: string
              format: date
            - type: 'null'
          title: Weddingdate
        employeeId:
          anyOf:
            - type: string
            - type: 'null'
          title: Employeeid
        position:
          anyOf:
            - type: string
            - type: 'null'
          title: Position
        shipType:
          anyOf:
            - type: string
            - type: 'null'
          title: Shiptype
        contractGroup:
          anyOf:
            - type: string
            - type: 'null'
          title: Contractgroup
        payscale:
          anyOf:
            - type: string
            - type: 'null'
          title: Payscale
        internationalAirport:
          anyOf:
            - type: string
            - type: 'null'
          title: Internationalairport
        domesticAirport:
          anyOf:
            - type: string
            - type: 'null'
          title: Domesticairport
        homeAddress:
          anyOf:
            - type: string
            - type: 'null'
          title: Homeaddress
        phone:
          anyOf:
            - type: string
            - type: 'null'
          title: Phone
        linkedinUrl:
          anyOf:
            - type: string
            - type: 'null'
          title: Linkedinurl
        facebookUrl:
          anyOf:
            - type: string
            - type: 'null'
          title: Facebookurl
        instagramUrl:
          anyOf:
            - type: string
            - type: 'null'
          title: Instagramurl
        languages:
          items:
            type: string
          type: array
          title: Languages
          default: []
        drivingLicense:
          anyOf:
            - type: string
            - type: 'null'
          title: Drivinglicense
        createdAt:
          type: string
          format: date-time
          title: Createdat
        updatedAt:
          type: string
          format: date-time
          title: Updatedat
      type: object
      required:
        - userId
        - createdAt
        - updatedAt
      title: CrewProfileResponseDTO
      description: |-
        API response shape (camelCase). Same fields as the DB DTO; the
        response form keeps the surface stable even if internal naming
        evolves.
    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
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````