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

# List worlds



## OpenAPI

````yaml https://worlds-api.wazoo.dev/openapi.json get /worlds
openapi: 3.0.0
info:
  title: Worlds API
  version: 0.1.0
  description: >-
    Data-plane API for Wazoo Worlds — search, SPARQL, import, export, and World
    lifecycle.
servers:
  - url: https://worlds-api.wazoo.dev
    description: Worlds API
security:
  - bearerWorldsToken: []
paths:
  /worlds:
    get:
      tags:
        - Worlds
      summary: List worlds
      operationId: listWorlds
      parameters:
        - schema:
            type: string
          required: false
          name: namespace
          in: query
      responses:
        '200':
          description: World list
          content:
            application/json:
              schema:
                type: object
                properties:
                  worlds:
                    type: array
                    items:
                      $ref: '#/components/schemas/WorldResource'
                required:
                  - worlds
      security:
        - bearerWorldsToken: []
components:
  schemas:
    WorldResource:
      type: object
      properties:
        name:
          type: string
        uid:
          type: string
        namespace:
          type: string
        worldId:
          type: string
        displayName:
          type: string
        state:
          type: string
        storage:
          type: string
          enum:
            - libsql-per-world
            - legacy-shared-libsql
        embeddingModel:
          type: string
        chunkSize:
          type: integer
        topK:
          type: integer
        minScore:
          type: number
        createTime:
          type: string
        updateTime:
          type: string
        deleteTime:
          type: string
        expireTime:
          type: string
      required:
        - name
        - uid
        - namespace
        - worldId
        - displayName
        - state
        - storage
        - embeddingModel
        - chunkSize
        - topK
        - minScore
        - createTime
        - updateTime
  securitySchemes:
    bearerWorldsToken:
      type: http
      scheme: bearer
      bearerFormat: wzw
      description: Worlds API data-plane token.

````