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

# Check calculation status for wrapped statistics



## OpenAPI

````yaml get /admin/wrapped/{year}/status
openapi: 3.0.0
info:
  title: Example for response examples value
  version: '1.0'
servers:
  - url: https://api.helpyousponsor.com/v1
    description: Production
security: []
paths:
  /admin/wrapped/{year}/status:
    get:
      tags:
        - Wrapped
      summary: Check calculation status for wrapped statistics
      operationId: 323c92024814ac2b9f674666216acf0f
      parameters:
        - name: year
          in: path
          description: Year to check status for
          required: true
          schema:
            type: integer
            example: 2024
      responses:
        '200':
          description: Status check successful
          content:
            application/json:
              schema:
                properties:
                  status:
                    type: string
                    enum:
                      - calculating
                      - completed
                      - failed
                      - unknown
                    example: calculating
                  lastCalculated:
                    type: string
                    format: date-time
                    nullable: true
                  error:
                    type: string
                    nullable: true
                  progress:
                    description: Calculation progress percentage (0-100)
                    type: integer
                    example: 75
                type: object
        '404':
          description: No calculation status found for this year
          content:
            application/json:
              schema:
                properties:
                  message:
                    type: string
                    example: No calculation status found
                type: object
      security:
        - apiKeyAuth: []
components:
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      description: 'API key generated from Developer Settings. Format: hys_...'
      name: X-HYS-API-Key
      in: header

````