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

# 프로젝트 단일 조회

> 단일 프로젝트의 상세 정보를 조회합니다. **플랜 제약:** FREE/AGENCY 전용.



## OpenAPI

````yaml GET /v1/project/{project_id}
openapi: 3.1.0
info:
  title: pluuug openapi
  version: 1.0.0
  description: >-
    플러그에서 제공하는 REST API의 상세 내용을 확인하고 직접 테스트할 수 있는 인터페이스입니다.<br>이 문서를 통해 API의
    엔드포인트, 요청 및 응답 형식 등을 확인할 수 있습니다.
servers:
  - url: https://openapi.pluuug.com
security: []
paths:
  /v1/project/{project_id}:
    get:
      tags:
        - project
      summary: 프로젝트 상세
      description: 단일 프로젝트의 상세 정보를 조회합니다. **플랜 제약:** FREE/AGENCY 전용.
      operationId: project_retrieve
      parameters:
        - in: path
          name: project_id
          schema:
            type: integer
          required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OpenapiProjectRetrieveUpdate'
          description: ''
      security:
        - ApiKeyAuth: []
          Signature: []
components:
  schemas:
    OpenapiProjectRetrieveUpdate:
      type: object
      properties:
        id:
          type: integer
          readOnly: true
        contract:
          description: 계약
          oneOf:
            - type: 'null'
            - $ref: '#/components/schemas/OpenapiNestedContract'
        title:
          type: string
          description: 프로젝트 제목
          maxLength: 128
        status:
          enum:
            - U
            - I
            - A
            - E
          type: string
          x-spec-enum-id: 83c2f50b5e5ec217
          description: |-
            상태 (U: 예정됨, I: 진행 중, A: 추가 기간, E: 종료됨)

            * `U` - 예정됨
            * `I` - 진행 중
            * `A` - 추가 기간
            * `E` - 종료됨
          x-enumNames:
            - 예정됨
            - 진행 중
            - 추가 기간
            - 종료됨
        symbolColor:
          type: string
          description: 상징색
          maxLength: 32
        startDate:
          type:
            - string
            - 'null'
          format: date
          description: 시작 날짜
        endDate:
          type:
            - string
            - 'null'
          format: date
          description: 종료 날짜
        actualEndDate:
          type:
            - string
            - 'null'
          format: date
          description: 실제 종료 날짜
        isHidden:
          type: boolean
          description: 숨김 여부
        created:
          type: string
          format: date-time
          readOnly: true
          description: 생성일시
      required:
        - created
        - id
        - title
    OpenapiNestedContract:
      type: object
      description: |-
        nested 아이템이 제공되면 선언된 required 필드를 모두 가져야 함을 강제한다.

        부모 레벨 partial(미전송 필드 생략)은 유지하되, nested 아이템은 object-level
        validate에서 required 필드 존재를 재확인해 누락 시 400을 반환한다.
      properties:
        id:
          type: integer
        title:
          type: string
          readOnly: true
          description: 계약 제목
        amount:
          type: integer
          readOnly: true
          description: 계약 금액
        type:
          enum:
            - I
            - S
            - G
          type: string
          x-spec-enum-id: 4b039ce324ed7b8c
          readOnly: true
          description: |-
            계약 타입

            * `I` - 회차 정산형
            * `S` - 정기 결제형
            * `G` - 단건 정산
          x-enumNames:
            - 회차 정산형
            - 정기 결제형
            - 단건 정산
        status:
          enum:
            - P
            - I
            - C
            - T
          type: string
          x-spec-enum-id: 81c3becab4b92e5c
          readOnly: true
          description: |-
            계약 상태

            * `P` - 계약 준비 중
            * `I` - 정산 진행 중
            * `C` - 계약 종료
            * `T` - 계약 중단
          x-enumNames:
            - 계약 준비 중
            - 정산 진행 중
            - 계약 종료
            - 계약 중단
        startDate:
          type:
            - string
            - 'null'
          format: date
          readOnly: true
          description: 계약 착수일
        endDate:
          type:
            - string
            - 'null'
          format: date
          readOnly: true
          description: 계약 종료일
      required:
        - amount
        - endDate
        - id
        - startDate
        - status
        - title
        - type
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key
    Signature:
      type: apiKey
      in: header
      name: X-Signature
      description: |-
        HMAC-SHA256 방식으로 body를 secret key로 해싱하여 생성한 서명을 넣어야 합니다.
        서버는 X-API-Key와 대응되는 secret key로 서명을 검증합니다.

````