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

# Simulator Config

> Static configuration needed by the CRM Simulator.

Returned once at panel mount. Currently only swap rollover time; may
grow if additional shared constants become relevant.



## OpenAPI

````yaml /openapi.json get /simulator/config
openapi: 3.1.0
info:
  title: Slate API
  version: 1.0.0
  description: Trading infrastructure API.
servers:
  - url: https://api.{your-broker}.slate-labs.com
    variables:
      your-broker:
        default: broker
security: []
tags:
  - name: Authentication
  - name: API Tokens
  - name: Customers
  - name: Accounts
  - name: Orders
  - name: Instruments & Groups
  - name: Transactions
  - name: Payments
  - name: Transfers
  - name: Risk
  - name: Workflow & CRM
  - name: Messaging
  - name: Integrations
  - name: Webhooks
  - name: Compliance
  - name: Promo codes
  - name: Reporting
  - name: Audit
  - name: Fraud & moderation
  - name: Broker settings
  - name: Users
  - name: Roles & Teams
  - name: Streams (SSE)
  - name: Simulator
  - name: Observability
  - name: Prop trading
paths:
  /simulator/config:
    get:
      tags:
        - Simulator
      summary: Simulator Config
      description: |-
        Static configuration needed by the CRM Simulator.

        Returned once at panel mount. Currently only swap rollover time; may
        grow if additional shared constants become relevant.
      operationId: simulator_config_simulator_config_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}

````