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

# Get Settings

> Get user's SDK settings (real trading status, wallet info, limits).
Requires API key or Dynamic JWT authentication.
Rate limited: 60/minute.

Supports two auth modes:
1. Bearer token (API key) - preferred for SDK clients
2. Query params (user_email, dynamic_user_id, wallet) - for web UI



## OpenAPI

````yaml /openapi.json get /api/sdk/settings
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/settings:
    get:
      summary: Get Settings
      description: |-
        Get user's SDK settings (real trading status, wallet info, limits).
        Requires API key or Dynamic JWT authentication.
        Rate limited: 60/minute.

        Supports two auth modes:
        1. Bearer token (API key) - preferred for SDK clients
        2. Query params (user_email, dynamic_user_id, wallet) - for web UI
      operationId: api_sdk_get_settings_api_sdk_settings_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SDKSettingsResponse'
components:
  schemas:
    SDKSettingsResponse:
      properties:
        sdk_real_trading_enabled:
          type: boolean
          title: Sdk Real Trading Enabled
        wallet_address:
          anyOf:
            - type: string
            - type: 'null'
          title: Wallet Address
        wallet_ownership:
          type: string
          title: Wallet Ownership
          default: native
        has_legacy_wallet:
          type: boolean
          title: Has Legacy Wallet
          default: false
        polymarket_usdc_balance:
          anyOf:
            - type: number
            - type: 'null'
          title: Polymarket Usdc Balance
        polymarket_allowances_set:
          type: boolean
          title: Polymarket Allowances Set
          default: false
        sdk_max_trade_amount:
          type: number
          title: Sdk Max Trade Amount
          default: 100
        sdk_daily_limit:
          type: number
          title: Sdk Daily Limit
          default: 500
        sdk_daily_spent:
          type: number
          title: Sdk Daily Spent
          default: 0
        portfolio_cap_pct:
          anyOf:
            - type: number
            - type: 'null'
          title: Portfolio Cap Pct
        trading_paused:
          type: boolean
          title: Trading Paused
          default: true
        solana_wallet_address:
          anyOf:
            - type: string
            - type: 'null'
          title: Solana Wallet Address
        kalshi_usdc_balance:
          anyOf:
            - type: number
            - type: 'null'
          title: Kalshi Usdc Balance
        last_sdk_version:
          anyOf:
            - type: string
            - type: 'null'
          title: Last Sdk Version
        last_sdk_version_seen_at:
          anyOf:
            - type: string
            - type: 'null'
          title: Last Sdk Version Seen At
        wallet_uses_deposit_wallet:
          type: boolean
          title: Wallet Uses Deposit Wallet
          default: false
        deposit_wallet_address:
          anyOf:
            - type: string
            - type: 'null'
          title: Deposit Wallet Address
      type: object
      required:
        - sdk_real_trading_enabled
      title: SDKSettingsResponse
      description: Response shape for GET /api/sdk/settings.

````