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

# settledOutcome

> Native Hyperliquid `/info` operation. Returns the settled result for a prediction-market `outcome`.



## OpenAPI

````yaml /reference/api-json/hyperliquid-info-api-json.json post /v1/hyperliquid/info#9
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#9:
    post:
      tags:
        - Hyperliquid
      summary: settledOutcome
      description: >-
        Native Hyperliquid `/info` operation. Returns the settled result for a
        prediction-market `outcome`.
      operationId: settledOutcome_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:
              - Alchemy
              - Dwellir
              - Chainstack
              - Covalent
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/HyperliquidInfo_settledOutcome_Request'
      responses:
        '200':
          description: Successful response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HyperliquidInfo_settledOutcome_Response'
components:
  schemas:
    HyperliquidInfo_settledOutcome_Request:
      type: object
      required:
        - type
        - outcome
      properties:
        type:
          type: string
          enum:
            - settledOutcome
          default: settledOutcome
          example: settledOutcome
        outcome:
          type: number
          description: The outcome index to read.
          example: 0
      example:
        type: settledOutcome
        outcome: 0
    HyperliquidInfo_settledOutcome_Response:
      type: object
      required:
        - spec
        - settleFraction
        - details
      properties:
        spec:
          type: object
          required:
            - outcome
            - name
            - sideSpecs
            - quoteToken
          properties:
            outcome:
              type: number
              example: 171
            name:
              type: string
              example: Fallback
            description:
              type: string
              example: ''
            sideSpecs:
              type: array
              items:
                type: object
                required:
                  - name
                properties:
                  name:
                    type: string
                    example: 'Yes'
            quoteToken:
              type: string
              example: USDC
        settleFraction:
          type: string
          example: '0.0'
        details:
          type: string
          example: price:78212.4
      example:
        spec:
          outcome: 0
          name: Recurring
          description: >-
            class:priceBinary|underlying:BTC|expiry:20260503-0600|targetPrice:78213|period:1d
          sideSpecs:
            - name: 'Yes'
            - name: 'No'
          quoteToken: USDH
        settleFraction: '0.0'
        details: price:78212.4
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-KEY
      description: API key to access the API (Optional)

````