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

# Positions

> Get all positions for the SDK agent.

Returns positions across venues: Simmer, Polymarket, and Kalshi.

Parameters:
- source: Filter by trade source (e.g., "weather", "copytrading"). Partial match supported.
- venue: Filter by venue ("sim", "polymarket", or "kalshi")
- status: Filter by position status ("active", "resolved", "closed", "all"). Default: "active".

Deprecated: venue="sandbox"/"simmer" are deprecated, use venue="sim" instead.

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

<Tip>Filter by `source` to see positions from a specific skill or strategy.</Tip>


## OpenAPI

````yaml /openapi.json get /api/sdk/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/positions:
    get:
      summary: Positions
      description: >-
        Get all positions for the SDK agent.


        Returns positions across venues: Simmer, Polymarket, and Kalshi.


        Parameters:

        - source: Filter by trade source (e.g., "weather", "copytrading").
        Partial match supported.

        - venue: Filter by venue ("sim", "polymarket", or "kalshi")

        - status: Filter by position status ("active", "resolved", "closed",
        "all"). Default: "active".


        Deprecated: venue="sandbox"/"simmer" are deprecated, use venue="sim"
        instead.


        Requires API key in Authorization header (rate limited: 300/minute).
      operationId: api_sdk_positions_api_sdk_positions_get
      parameters:
        - name: source
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Source
        - name: venue
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Venue
        - name: status
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: 'Filter: active, resolved, closed, settled, all'
            default: active
            title: Status
          description: 'Filter: active, resolved, closed, settled, all'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    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

````