> ## 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 Profile Verification

> Profile rollup + per-item states. Authz: self or staff.



## OpenAPI

````yaml /openapi.json get /api/v1/crew/users/{user_id}/verification
openapi: 3.1.0
info:
  title: Seamind Backend
  version: 0.1.0
servers: []
security: []
paths:
  /api/v1/crew/users/{user_id}/verification:
    get:
      tags:
        - crew-verification
      summary: Get Profile Verification
      description: 'Profile rollup + per-item states. Authz: self or staff.'
      operationId: get_profile_verification_api_v1_crew_users__user_id__verification_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/ProfileVerificationSummaryDTO'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    ProfileVerificationSummaryDTO:
      properties:
        state:
          $ref: '#/components/schemas/ProfileVerificationState'
        items:
          items:
            $ref: '#/components/schemas/CrewVerificationResponseDTO'
          type: array
          title: Items
          default: []
      type: object
      required:
        - state
      title: ProfileVerificationSummaryDTO
      description: The computed profile rollup + the per-item states behind it.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ProfileVerificationState:
      type: string
      enum:
        - incomplete
        - in_review
        - action_needed
        - approved
      title: ProfileVerificationState
      description: Rolled-up profile state, framed by *whose turn it is*.
    CrewVerificationResponseDTO:
      properties:
        targetType:
          type: string
          title: Targettype
        targetId:
          type: string
          title: Targetid
        status:
          $ref: '#/components/schemas/VerificationStatus'
        rejectionReason:
          anyOf:
            - type: string
            - type: 'null'
          title: Rejectionreason
        reviewedAt:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Reviewedat
      type: object
      required:
        - targetType
        - targetId
        - status
      title: CrewVerificationResponseDTO
      description: |-
        API response shape (camelCase). Used both as the per-item entry in a
        profile summary and embedded as the `verification` field on a credential
        response.
    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
    VerificationStatus:
      type: string
      enum:
        - not_submitted
        - pending
        - verified
        - rejected
      title: VerificationStatus
      description: Per-item review state.
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````