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

# delegatorHistory

> Native Hyperliquid `/info` operation. Returns the user's staking-delegation history.



## OpenAPI

````yaml /reference/api-json/hyperliquid-info-api-json.json post /v1/hyperliquid/info#50
openapi: 3.0.0
info:
  title: Uniblock Hyperliquid Info API
  description: >-
    Per-operation request/response docs for the Raw Hyperliquid Info dispatch
    endpoint. Each Hyperliquid Info `type` is a synthetic path through the
    single `POST /v1/hyperliquid/info` unified route.
  version: '1.0'
servers:
  - url: https://api.uniblock.dev/uni
    description: Gateway
security:
  - ApiKeyAuth: []
tags:
  - name: Hyperliquid
paths:
  /v1/hyperliquid/info#50:
    post:
      tags:
        - Hyperliquid
      summary: delegatorHistory
      description: >-
        Native Hyperliquid `/info` operation. Returns the user's
        staking-delegation history.
      operationId: delegatorHistory_HyperliquidInfo
      parameters:
        - name: chainId
          required: true
          in: query
          description: Unique identifier for a blockchain network.
          schema:
            type: number
            enum:
              - 999
              - 998
            default: 999
            example: 999
        - name: provider
          required: false
          in: query
          description: >-
            Specify which provider to use. The project's provider priority list
            is used by default if no providers are selected. (Priority list can
            be managed on Uniblock's dashboard)
          schema:
            type: string
            enum:
              - Dwellir
              - Chainstack
              - Covalent
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/HyperliquidInfo_delegatorHistory_Request'
      responses:
        '200':
          description: Successful response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HyperliquidInfo_delegatorHistory_Response'
components:
  schemas:
    HyperliquidInfo_delegatorHistory_Request:
      type: object
      required:
        - type
        - user
      properties:
        type:
          type: string
          enum:
            - delegatorHistory
          default: delegatorHistory
          example: delegatorHistory
        user:
          type: string
          description: The account address to query (0x-prefixed).
          example: '0x000000000000000000000000000000000000dEaD'
      example:
        type: delegatorHistory
        user: '0x000000000000000000000000000000000000dEaD'
    HyperliquidInfo_delegatorHistory_Response:
      type: array
      description: The user's staking-delegation history.
      items:
        type: object
        required:
          - time
          - hash
          - delta
        properties:
          time:
            type: number
            example: 1718987058770
          hash:
            type: string
            example: '0x96557e1c0d321f8ad2f7040bffc7c401fb0042accdb690bd9de86bacbc8b9406'
          delta:
            type: object
            required:
              - type
            description: >-
              The update payload. The `type` field discriminates the variant
              (e.g. `deposit`, `spotTransfer`, `spotGenesis`); remaining fields
              depend on that variant.
            properties:
              type:
                type: string
                example: spotTransfer
      example: []
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-KEY
      description: API key to access the API (Optional)

````