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

# Wallet Positions

> Fetch Polymarket positions for any wallet address.

Requires API key in Authorization header (rate limited: 60/minute).
Cached for 30s per wallet to prevent heavy pollers from saturating the API.



## OpenAPI

````yaml /openapi.json get /api/sdk/wallet/{wallet_address}/positions
openapi: 3.1.0
info:
  title: Simmer API
  description: Agent-native trading infrastructure for prediction markets.
  version: 1.0.0
servers:
  - url: https://api.simmer.markets
security: []
paths:
  /api/sdk/wallet/{wallet_address}/positions:
    get:
      summary: Wallet Positions
      description: >-
        Fetch Polymarket positions for any wallet address.


        Requires API key in Authorization header (rate limited: 60/minute).

        Cached for 30s per wallet to prevent heavy pollers from saturating the
        API.
      operationId: api_sdk_wallet_positions_api_sdk_wallet__wallet_address__positions_get
      parameters:
        - name: wallet_address
          in: path
          required: true
          schema:
            type: string
            title: Wallet Address
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SDKWalletPositionsResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    SDKWalletPositionsResponse:
      properties:
        wallet_address:
          type: string
          title: Wallet Address
        position_count:
          type: integer
          title: Position Count
        total_value:
          anyOf:
            - type: number
            - type: 'null'
          title: Total Value
        positions:
          items:
            $ref: '#/components/schemas/SDKWalletPosition'
          type: array
          title: Positions
      type: object
      required:
        - wallet_address
        - position_count
        - positions
      title: SDKWalletPositionsResponse
      description: Response for wallet positions endpoint.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    SDKWalletPosition:
      properties:
        market_title:
          type: string
          title: Market Title
        market_slug:
          anyOf:
            - type: string
            - type: 'null'
          title: Market Slug
        condition_id:
          type: string
          title: Condition Id
        token_id:
          type: string
          title: Token Id
        side:
          type: string
          title: Side
        shares:
          type: number
          title: Shares
        current_price:
          anyOf:
            - type: number
            - type: 'null'
          title: Current Price
        current_value:
          anyOf:
            - type: number
            - type: 'null'
          title: Current Value
      type: object
      required:
        - market_title
        - condition_id
        - token_id
        - side
        - shares
      title: SDKWalletPosition
      description: A position held by a wallet.
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError

````