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

# Get project details

> Retrieves details of a specific project, including reputation and analytics.



## OpenAPI

````yaml get /api/v1/projects/{id}
openapi: 3.0.0
info:
  title: YapCoder API
  description: API for YapCoder - Developer Reputation and Analytics Platform
  version: 1.0.0
servers:
  - url: https://api.yapcoder.com
    description: Local development server
security:
  - bearerAuth: []
  - apiKeyAuth: []
tags:
  - name: healthchecks
    description: Service health and readiness checks
  - name: developers
    description: Developer management and analytics
  - name: projects
    description: Project analytics and repository details
  - name: sui
    description: Sui ecosystem packages and data
paths:
  /api/v1/projects/{id}:
    get:
      tags:
        - projects
      summary: Get project details
      description: >-
        Retrieves details of a specific project, including reputation and
        analytics.
      operationId: GetProjectDetails
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: integer
            format: int64
      responses:
        '200':
          description: Project details
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProjectDetails'
        '404':
          description: Project not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
components:
  schemas:
    ProjectDetails:
      type: object
      properties:
        project:
          $ref: '#/components/schemas/Project'
        reputation:
          type: array
          items:
            $ref: '#/components/schemas/ReputationScore'
        analytics:
          $ref: '#/components/schemas/CampaignAnalytics'
    ErrorResponse:
      type: object
      properties:
        message:
          type: string
    Project:
      type: object
      properties:
        id:
          type: integer
          format: int64
        created_at:
          type: string
          format: date-time
        updated_at:
          type: string
          format: date-time
        deleted_at:
          type: string
          format: date-time
        creator_username:
          type: string
        creator_address:
          type: string
        name:
          type: string
        usernames:
          type: array
          items:
            type: string
        repos:
          type: array
          items:
            type: string
    ReputationScore:
      type: object
      properties:
        username:
          type: string
        score:
          type: number
          format: double
        details:
          $ref: '#/components/schemas/ReputationDetails'
    CampaignAnalytics:
      type: object
      properties:
        total_repos:
          type: integer
        total_stars:
          type: integer
        total_forks:
          type: integer
        total_contributors:
          type: integer
        repos:
          type: array
          items:
            $ref: '#/components/schemas/Repository'
    ReputationDetails:
      type: object
      properties:
        total_stars:
          type: integer
        total_commits:
          type: integer
        sui_repo_count:
          type: integer
        experience_days:
          type: integer
        total_size_kb:
          type: integer
        language_count:
          type: integer
        last_activity:
          type: string
        onboarded_date:
          type: string
    Repository:
      type: object
      properties:
        id:
          type: integer
          format: int64
        name:
          type: string
        full_name:
          type: string
        description:
          type: string
        language:
          type: string
        languages:
          type: array
          items:
            type: string
        owner:
          type: object
          properties:
            login:
              type: string
            avatar_url:
              type: string
        html_url:
          type: string
        stargazers_count:
          type: integer
        forks_count:
          type: integer
        fork:
          type: boolean
        size:
          type: integer
        topics:
          type: array
          items:
            type: string
        open_issues_count:
          type: integer
        open_issues:
          type: integer
        open_prs:
          type: integer
        signal:
          type: string
          description: Project health signal (Healthy, Moderate, Abandoned)
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
    apiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key

````