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

> Returns all Worlds that the API key can access. Running Worlds include their service endpoints.



## OpenAPI

````yaml /openapi/simulation.yaml get /v1/worlds
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: Create and control isolated runtime instances of ready Simulators.
    name: simulations
    x-group: Simulations
  - description: Build, inspect, tag, and delete reusable Simulator artifacts.
    name: simulators
    x-group: Simulators
  - description: Create and control coordinated groups of Simulations.
    name: worlds
    x-group: Worlds
paths:
  /v1/worlds:
    get:
      tags:
        - worlds
      summary: List Worlds
      description: >-
        Returns all Worlds that the API key can access. Running Worlds include
        their service endpoints.
      operationId: list-worlds
      parameters:
        - explode: false
          in: query
          name: limit
          schema:
            format: int64
            type: integer
        - explode: false
          in: query
          name: cursor
          schema:
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListWorldsResponse'
          description: OK
        '400':
          content:
            application/problem+json:
              examples:
                bad_request:
                  $ref: '#/components/examples/bad_request'
              schema:
                $ref: '#/components/schemas/Error'
          description: Bad Request
        '401':
          $ref: '#/components/responses/Unauthorized'
        '422':
          content:
            application/problem+json:
              examples:
                validation:
                  $ref: '#/components/examples/validation'
              schema:
                $ref: '#/components/schemas/Error'
          description: Unprocessable Entity
        '500':
          $ref: '#/components/responses/InternalServerError'
      security:
        - apiKeyAuth: []
components:
  schemas:
    ListWorldsResponse:
      additionalProperties: false
      properties:
        next_cursor:
          type:
            - string
            - 'null'
        worlds:
          items:
            $ref: '#/components/schemas/WorldView'
          type: array
      required:
        - worlds
        - next_cursor
      type: object
    Error:
      additionalProperties: false
      properties:
        code:
          minLength: 1
          type: string
        detail:
          minLength: 1
          type: string
      required:
        - code
        - detail
      type: object
    WorldView:
      additionalProperties: false
      examples:
        - created_at: '2026-01-15T12:00:00Z'
          from: ''
          id: wld_01J8Z5X4K7M2N9P0Q1R2S3T4V7
          members:
            billing:
              simulation_id: sim_01J8Z5X4K7M2N9P0Q1R2S3T4V6
              status: running
          name: support-demo
          seed: demo-seed
          services:
            billing:
              endpoint: https://api.continuouslabs.ai/sim/sim_01J8Z5X4K7M2N9P0Q1R2S3T4V6
              simulation_id: sim_01J8Z5X4K7M2N9P0Q1R2S3T4V6
          status: running
      properties:
        created_at:
          format: date-time
          type: string
        error:
          $ref: '#/components/schemas/Error'
        from:
          type: string
        id:
          type: string
        members:
          additionalProperties:
            $ref: '#/components/schemas/WorldMemberView'
          type: object
        name:
          type: string
        seed:
          type: string
        services:
          additionalProperties:
            $ref: '#/components/schemas/WorldService'
          type: object
        status:
          enum:
            - creating
            - running
            - stopped
            - failed
          type: string
      required:
        - id
        - name
        - status
        - seed
        - from
        - members
        - services
        - created_at
      type: object
    WorldMemberView:
      additionalProperties: false
      properties:
        simulation_id:
          type: string
        status:
          description: >-
            The member Simulation's current lifecycle status — one of running,
            paused, or stopped — or empty for a member with no live row (a
            failed World's rolled-back member, or one not yet booted).
          type: string
      required:
        - simulation_id
        - status
      type: object
    WorldService:
      additionalProperties: false
      properties:
        endpoint:
          type: string
        simulation_id:
          type: string
      required:
        - simulation_id
        - endpoint
      type: object
  examples:
    bad_request:
      value:
        code: bad_request
        detail: The cursor is invalid.
    validation:
      value:
        code: validation
        detail: The request does not satisfy the API contract.
    auth_invalid:
      value:
        code: auth_invalid
        detail: The API key is missing or invalid.
    internal:
      value:
        code: internal
        detail: The server encountered an unexpected error.
  responses:
    Unauthorized:
      content:
        application/problem+json:
          examples:
            auth_invalid:
              $ref: '#/components/examples/auth_invalid'
          schema:
            $ref: '#/components/schemas/Error'
      description: Unauthorized
    InternalServerError:
      content:
        application/problem+json:
          examples:
            internal:
              $ref: '#/components/examples/internal'
          schema:
            $ref: '#/components/schemas/Error'
      description: Internal Server Error
  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

````