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

# Get Project

> Load a project visible to the current bearer-token principal.



## OpenAPI

````yaml /generated/api.openapi.json get /api/projects/{project_id}
openapi: 3.1.0
info:
  title: Kynasmith Public API
  version: 0.1.0
servers: []
security: []
paths:
  /api/projects/{project_id}:
    get:
      tags:
        - platform
      summary: Get Project
      description: Load a project visible to the current bearer-token principal.
      operationId: get_project_api_projects__project_id__get
      parameters:
        - in: path
          name: project_id
          required: true
          schema:
            format: uuid
            title: Project Id
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProjectResource'
          description: Successful Response
        '401':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PublicErrorEnvelope'
          description: Authentication failed.
        '403':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PublicErrorEnvelope'
          description: Caller is not authorized for this action.
        '404':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PublicErrorEnvelope'
          description: Referenced resource does not exist.
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PublicErrorEnvelope'
          description: Request validation failed for the targeted resource state.
      security:
        - BearerAccessToken: []
        - BearerAccessToken: []
components:
  schemas:
    ProjectResource:
      description: Project resource returned by platform endpoints.
      properties:
        archived_at:
          anyOf:
            - format: date-time
              type: string
            - type: 'null'
          description: Archive timestamp when the project is no longer writable.
          title: Archived At
        created_at:
          description: Project creation timestamp.
          format: date-time
          title: Created At
          type: string
        name:
          description: Display name for the project.
          title: Name
          type: string
        organization_id:
          description: Owning organization identifier.
          format: uuid
          title: Organization Id
          type: string
        project_id:
          description: Project identifier.
          format: uuid
          title: Project Id
          type: string
        slug:
          description: Stable project slug.
          title: Slug
          type: string
      required:
        - project_id
        - organization_id
        - slug
        - name
        - created_at
      title: ProjectResource
      type: object
    PublicErrorEnvelope:
      description: Stable public error envelope shared across transports.
      properties:
        error:
          $ref: '#/components/schemas/PublicErrorDetail'
          description: Structured error payload.
      required:
        - error
      title: PublicErrorEnvelope
      type: object
    PublicErrorDetail:
      description: Stable public error payload shared across transports.
      properties:
        code:
          description: Machine-readable error code.
          title: Code
          type: string
        details:
          additionalProperties:
            anyOf:
              - type: string
              - type: integer
              - type: number
              - type: boolean
              - type: 'null'
          description: Bounded structured error details.
          title: Details
          type: object
        message:
          description: Human-readable error message.
          title: Message
          type: string
        retryable:
          description: Whether the caller can retry safely.
          title: Retryable
          type: boolean
      required:
        - code
        - message
        - retryable
      title: PublicErrorDetail
      type: object
  securitySchemes:
    BearerAccessToken:
      description: Backend-issued machine access token for project-scoped API access.
      scheme: bearer
      type: http

````