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

# Neg Risk Smart Money Summary

> Neg-risk (multi-outcome) smart-money summary for a single market.



## OpenAPI

````yaml /openapi.json post /api/v1/smart-money/neg-risk/summary
openapi: 3.0.3
info:
  title: DataDash Analytics API
  version: 1.0.0
servers: []
security:
  - ApiKeyAuth: []
  - BearerAuth: []
paths:
  /api/v1/smart-money/neg-risk/summary:
    post:
      tags:
        - Smart Money
      summary: Neg Risk Smart Money Summary
      description: Neg-risk (multi-outcome) smart-money summary for a single market.
      operationId: listSmartMoneyNegRiskSummary
      requestBody:
        content:
          application/json:
            schema:
              properties:
                orderBy:
                  description: >-
                    Sort keys in priority order; the first is the primary sort.
                    Defaults to the table's configured ranking when omitted.
                  items:
                    properties:
                      direction:
                        default: asc
                        enum:
                          - asc
                          - desc
                        type: string
                      field:
                        enum:
                          - yesValue
                          - yesPrice
                          - yesWallets
                          - noValue
                          - noPrice
                          - noWallets
                          - smartPct
                          - marketPct
                        type: string
                    required:
                      - field
                    type: object
                  type: array
                page:
                  $ref: '#/components/schemas/PageInput'
              required:
                - page
              type: object
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/NegRiskSmartMoneySummaryRow'
                type: array
          description: List of Neg Risk Smart Money Summary rows
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
          description: >-
            invalid request (malformed body, unknown field, or failed
            validation)
        '401':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
          description: missing or invalid credentials
        '403':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
          description: credentials lack access to this resource
        '500':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
          description: internal error
components:
  schemas:
    PageInput:
      properties:
        limit:
          minimum: 1
          type: integer
        offset:
          minimum: 0
          type: integer
      required:
        - limit
      type: object
    NegRiskSmartMoneySummaryRow:
      properties:
        marketPct:
          description: >-
            The market's normalized probability for this outcome, its live Yes
            price over the sum of all open markets' Yes prices (the bar's
            marker)
          format: double
          title: Market Odds
          type: number
        noPrice:
          description: >-
            Average at-risk entry price of the No side in familiar No-price
            units, field buy cost divided by the synthetic NO-equivalent shares
            (the strip's red avg)
          format: double
          title: No Price
          type: number
        noValue:
          description: >-
            Current USD value of the cohort's field shares, its true bets on
            every other outcome of the event at live prices (no_value)
          format: double
          title: No Value
          type: number
        noWallets:
          description: >-
            Number of wallets with at-risk money on the event's other outcomes,
            counted from the same per-wallet arrays as the dollars
          format: int64
          title: No Wallets
          type: integer
        smartPct:
          description: >-
            The bar percentage, the cohort's Yes value as a share of its total
            value on the event (value_pct); compare against Market Odds (the
            marker)
          format: double
          title: Smart Money Odds
          type: number
        yesPrice:
          description: >-
            Average at-risk entry price of the true Yes shares, buy cost divided
            by canonical shares, not the live price (the strip's green avg)
          format: double
          title: Yes Price
          type: number
        yesValue:
          description: >-
            Current USD value of the cohort's true Yes shares on the target
            market (yes_value, canonical shares e' at the live Yes price)
          format: double
          title: Yes Value
          type: number
        yesWallets:
          description: >-
            Number of wallets whose canonical bet includes this outcome (true
            share count e' > 0 after netting, conversion, and the floor skim)
          format: int64
          title: Yes Wallets
          type: integer
      type: object
    Error:
      properties:
        code:
          description: machine-readable error code
          type: string
        message:
          description: human-readable description
          type: string
      required:
        - code
        - message
      type: object
  securitySchemes:
    ApiKeyAuth:
      description: API key issued for programmatic access.
      in: header
      name: X-Api-Key
      type: apiKey
    BearerAuth:
      bearerFormat: JWT
      description: User access token.
      scheme: bearer
      type: http

````