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

# Get GitHub star count

> Returns the number of GitHub stars for the Reactive Resume repository. The count is cached for up to 6 hours and falls back to a last-known value if the GitHub API is unavailable. No authentication required.



## OpenAPI

````yaml /spec.json get /statistics/github/stars
openapi: 3.1.1
info:
  title: Reactive Resume
  version: 5.1.0
  description: Reactive Resume API
  license:
    name: MIT
    url: https://github.com/amruthpillai/reactive-resume/blob/main/LICENSE
  contact:
    name: Amruth Pillai
    email: hello@amruthpillai.com
    url: https://amruthpillai.com
servers:
  - url: http://localhost:3000/api/openapi
security:
  - apiKey: []
externalDocs:
  url: https://docs.rxresu.me
  description: Reactive Resume Documentation
paths:
  /statistics/github/stars:
    get:
      tags:
        - Platform Statistics
      summary: Get GitHub star count
      description: >-
        Returns the number of GitHub stars for the Reactive Resume repository.
        The count is cached for up to 6 hours and falls back to a last-known
        value if the GitHub API is unavailable. No authentication required.
      operationId: getGitHubStarCount
      responses:
        '200':
          description: The number of GitHub stars for the Reactive Resume repository.
          content:
            application/json:
              schema:
                type: number
                description: The number of GitHub stars.
components:
  securitySchemes:
    apiKey:
      type: apiKey
      name: x-api-key
      in: header
      description: The API key to authenticate requests.

````