> ## 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.

# orderStatus

> Native Hyperliquid `/info` operation. Returns the status of a single order for `user`, identified by `oid` (numeric order id) or `cloid` (client order id).



## OpenAPI

````yaml /reference/api-json/hyperliquid-info-api-json.json post /v1/hyperliquid/info#58
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#58:
    post:
      tags:
        - Hyperliquid
      summary: orderStatus
      description: >-
        Native Hyperliquid `/info` operation. Returns the status of a single
        order for `user`, identified by `oid` (numeric order id) or `cloid`
        (client order id).
      operationId: orderStatus_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_orderStatus_Request'
      responses:
        '200':
          description: Successful response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HyperliquidInfo_orderStatus_Response'
components:
  schemas:
    HyperliquidInfo_orderStatus_Request:
      type: object
      required:
        - type
        - user
      properties:
        type:
          type: string
          enum:
            - orderStatus
          default: orderStatus
          example: orderStatus
        user:
          type: string
          description: The account address to query (0x-prefixed).
          example: '0x000000000000000000000000000000000000dEaD'
        oid:
          type: number
          description: The numeric order id to look up (use this or `cloid`).
          example: 12345
        cloid:
          type: string
          description: The client order id (128-bit hex) to look up (use this or `oid`).
          example: '0x00000000000000000000000000000001'
      example:
        type: orderStatus
        user: '0x000000000000000000000000000000000000dEaD'
        oid: 12345
    HyperliquidInfo_orderStatus_Response:
      type: object
      properties: {}
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-KEY
      description: API key to access the API (Optional)

````