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

# List Simulators (includes the pre-baked catalog)

> Lists workspace Simulators and the shared catalog. Filter by status or name and use cursor pagination.



## OpenAPI

````yaml /openapi/simulation.yaml get /v1/simulators
openapi: 3.1.0
info:
  description: >-
    The continuous-simulation API builds reusable Simulators and runs isolated
    Simulations and Worlds. This document describes the stable v1 public
    contract.
  title: continuous-simulation API
  version: v1
servers:
  - description: Continuous production API.
    url: https://api.continuouslabs.ai
security: []
tags:
  - description: Read deployment metadata for the public API.
    name: meta
    x-group: API metadata
  - description: Create and control isolated runtime instances of ready Simulators.
    name: simulations
    x-group: Simulations
  - description: Build, inspect, tag, publish, and delete reusable Simulator artifacts.
    name: simulators
    x-group: Simulators
  - description: Upload and publish Simulator artifacts.
    name: uploads
    x-group: Artifact uploads
  - description: Create and control coordinated groups of Simulations.
    name: worlds
    x-group: Worlds
paths:
  /v1/simulators:
    get:
      tags:
        - simulators
      summary: List Simulators (includes the pre-baked catalog)
      description: >-
        Lists workspace Simulators and the shared catalog. Filter by status or
        name and use cursor pagination.
      operationId: list-simulators
      parameters:
        - explode: false
          in: query
          name: status
          schema:
            type: string
        - explode: false
          in: query
          name: name
          schema:
            type: string
        - explode: false
          in: query
          name: limit
          schema:
            format: int64
            type: integer
        - explode: false
          in: query
          name: cursor
          schema:
            type: string
        - description: >-
            Required with a sealed session on workspace-scoped routes. API keys
            carry their workspace.
          in: header
          name: X-Workspace-Id
          schema:
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListSimulatorsResponse'
          description: OK
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          $ref: '#/components/responses/Forbidden'
        '404':
          $ref: '#/components/responses/NotFound'
        '422':
          $ref: '#/components/responses/UnprocessableEntity'
        '500':
          $ref: '#/components/responses/InternalServerError'
        '503':
          $ref: '#/components/responses/ServiceUnavailable'
      security:
        - apiKeyAuth: []
        - sessionBearerAuth: []
        - sessionCookie: []
components:
  schemas:
    ListSimulatorsResponse:
      additionalProperties: false
      properties:
        $schema:
          description: A URL to the JSON Schema for this object.
          examples:
            - https://example.com/schemas/ListSimulatorsResponse.json
          format: uri
          readOnly: true
          type: string
        next_cursor:
          type:
            - string
            - 'null'
        simulators:
          items:
            $ref: '#/components/schemas/Simulator'
          type: array
      required:
        - simulators
        - next_cursor
      type: object
    Simulator:
      additionalProperties: false
      examples:
        - artifact_digest: >-
            sha256:0000000000000000000000000000000000000000000000000000000000000000
          created_at: '2026-01-15T12:00:00Z'
          id: smr_01J8Z5X4K7M2N9P0Q1R2S3T4V5
          instructions: Return stable example data for every operation.
          name: billing-api
          owner: ws_01J8Z5X4K7M2N9P0Q1R2S3T4V4
          parent: ''
          status: ready
          tags:
            - latest
      properties:
        $schema:
          description: A URL to the JSON Schema for this object.
          examples:
            - https://example.com/schemas/Simulator.json
          format: uri
          readOnly: true
          type: string
        artifact_digest:
          type: string
        composition:
          $ref: '#/components/schemas/SimulatorComposition'
        created_at:
          format: date-time
          type: string
        error:
          $ref: '#/components/schemas/Error'
        id:
          type: string
        instructions:
          type: string
        name:
          type: string
        owner:
          type: string
        parent:
          type: string
        status:
          enum:
            - building
            - ready
            - failed
          type: string
        tags:
          items:
            type: string
          type: array
      required:
        - id
        - name
        - owner
        - tags
        - parent
        - status
        - artifact_digest
        - instructions
        - created_at
      type: object
    Error:
      additionalProperties: false
      examples:
        - code: simulator_not_ready
          detail: simulator is not ready
      properties:
        code:
          minLength: 1
          type: string
        detail:
          minLength: 1
          type: string
      required:
        - code
        - detail
      type: object
    SimulatorComposition:
      additionalProperties: false
      properties:
        custom:
          description: Inputs an interceptor serves under the custom role
          format: int64
          type: integer
        declared:
          description: Inputs the Simulator serves from a declared role
          format: int64
          type: integer
        entities:
          description: Entities the Simulator stores
          format: int64
          type: integer
        inputs:
          description: Inputs the routed operations declare
          format: int64
          type: integer
        intercepted:
          description: Inputs a custom operation leaves to its interceptor with no role
          format: int64
          type: integer
        operations:
          description: Operations the Simulator routes
          format: int64
          type: integer
        unsupported:
          description: Inputs the Simulator refuses
          format: int64
          type: integer
      required:
        - operations
        - entities
        - inputs
        - declared
        - custom
        - intercepted
        - unsupported
      type: object
  responses:
    BadRequest:
      content:
        application/problem+json:
          schema:
            $ref: '#/components/schemas/Error'
      description: Bad Request
    Unauthorized:
      content:
        application/problem+json:
          schema:
            $ref: '#/components/schemas/Error'
      description: Unauthorized
    Forbidden:
      content:
        application/problem+json:
          schema:
            $ref: '#/components/schemas/Error'
      description: Forbidden
    NotFound:
      content:
        application/problem+json:
          schema:
            $ref: '#/components/schemas/Error'
      description: Not Found
    UnprocessableEntity:
      content:
        application/problem+json:
          schema:
            $ref: '#/components/schemas/Error'
      description: Unprocessable Entity
    InternalServerError:
      content:
        application/problem+json:
          schema:
            $ref: '#/components/schemas/Error'
      description: Internal Server Error
    ServiceUnavailable:
      content:
        application/problem+json:
          schema:
            $ref: '#/components/schemas/Error'
      description: Service Unavailable
  securitySchemes:
    apiKeyAuth:
      bearerFormat: Continuous API key
      description: >-
        Use a Continuous API key. Send it in the Authorization header as a
        Bearer token.
      scheme: bearer
      type: http
    sessionBearerAuth:
      bearerFormat: sealed session
      description: >-
        Use a sealed user session Bearer token. This method supports browser and
        session-only operations.
      scheme: bearer
      type: http
    sessionCookie:
      description: >-
        Use the sealed browser session cookie. This method supports browser and
        session-only operations.
      in: cookie
      name: wos-session
      type: apiKey

````