> ## 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 for Bot Backend

> Retrieves Hypixel player data specifically for the Bot backend, with caching and database updates. Requires specific permissions.



## OpenAPI

````yaml https://stash.seraph.si/json get /hypixel/player/{player}/bot
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:
  /hypixel/player/{player}/bot:
    get:
      tags:
        - Player
        - Hypixel
      summary: Fetch Hypixel Player Data for Bot Backend
      description: >-
        Retrieves Hypixel player data specifically for the Bot backend, with
        caching and database updates. Requires specific permissions.
      parameters:
        - description: Bearer <token>
          in: header
          name: Authorization
          required: true
          schema:
            type: string
        - description: Player UUID
          example: e59f2385-e32a-46c5-8493-27e1f4094e09
          in: path
          name: player
          required: true
          schema:
            type: string
        - description: Game mode or type of request (e.g., SKYWARS)
          in: header
          name: type
          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'
        '401':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/validation.ErrorResponse'
          description: 'Unauthorized: Not enough permission'
        '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

````