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

# Fetch Hypixel Player Data

> Retrieves Hypixel player data, caches it, and updates relevant database entries.



## OpenAPI

````yaml https://stash.seraph.si/json get /player/{player}
openapi: 3.1.0
info:
  contact:
    email: support@seraph.si
    name: API Support
    url: https://discord.gg/seraph
  title: Seraph API
  version: '4.0'
servers: []
security: []
externalDocs:
  description: ''
  url: ''
paths:
  /player/{player}:
    get:
      tags:
        - Player
        - Hypixel
      summary: Fetch Hypixel Player Data
      description: >-
        Retrieves Hypixel player data, caches it, and updates relevant database
        entries.
      parameters:
        - description: Player UUID
          example: e59f2385-e32a-46c5-8493-27e1f4094e09
          in: path
          name: player
          required: true
          schema:
            type: string
      requestBody:
        content:
          application/json:
            schema:
              type: object
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/routes.HypixelPlayer'
          description: Successfully retrieved player data
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/validation.ErrorResponse'
          description: 'Bad Request: Invalid UUID or Invalid Service Name'
        '429':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/routes.HypixelPlayer'
          description: 'Too Many Requests: Rate limit exceeded or upstream throttle'
components:
  schemas:
    routes.HypixelPlayer:
      properties:
        cause:
          type: string
        player: {}
        success:
          type: boolean
        throttle:
          type: boolean
      type: object
    validation.ErrorResponse:
      properties:
        cause:
          type: string
        code:
          type: integer
        documentation:
          type: string
        extra:
          items:
            $ref: '#/components/schemas/validation.ErrorObject'
          type: array
          uniqueItems: false
        msTime:
          type: integer
        success:
          type: boolean
      type: object
    validation.ErrorObject:
      properties:
        code:
          type: integer
        developer_reason:
          type: string
        name:
          type: string
        reason:
          type: string
      type: object

````