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

# Update Settings

> Update user's SDK settings (rate limited: 30/minute).
Requires wallet to be linked before enabling real trading.



## OpenAPI

````yaml /openapi.json post /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:
    post:
      summary: Update Settings
      description: |-
        Update user's SDK settings (rate limited: 30/minute).
        Requires wallet to be linked before enabling real trading.
      operationId: api_sdk_update_settings_api_sdk_settings_post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SDKSettingsUpdate'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    SDKSettingsUpdate:
      properties:
        user_email:
          type: string
          title: User Email
        dynamic_user_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Dynamic User Id
        wallet:
          anyOf:
            - type: string
            - type: 'null'
          title: Wallet
        sdk_real_trading_enabled:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Sdk Real Trading Enabled
        sdk_max_trade_amount:
          anyOf:
            - type: number
            - type: 'null'
          title: Sdk Max Trade Amount
        sdk_daily_limit:
          anyOf:
            - type: number
            - type: 'null'
          title: Sdk Daily Limit
      type: object
      required:
        - user_email
      title: SDKSettingsUpdate
    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

````