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

# Get Spaces List

> Retrieve the list of Spaces for the user's Org.



## OpenAPI

````yaml POST /v1/apps/
openapi: 3.1.0
info:
  title: Pulze.ai API
  version: 0.1.0
servers: []
security: []
paths:
  /v1/apps/:
    post:
      tags:
        - apps
      summary: Get Spaces List
      description: Retrieve the list of Spaces for the user's Org.
      operationId: get_apps_list_v1_apps__post
      parameters:
        - name: search
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Search
        - name: page
          in: query
          required: false
          schema:
            type: integer
            minimum: 1
            default: 1
            title: Page
        - name: size
          in: query
          required: false
          schema:
            type: integer
            maximum: 100
            minimum: 1
            default: 50
            title: Size
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/GetAppTableParams'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PaginatedResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    GetAppTableParams:
      properties:
        params:
          items:
            $ref: '#/components/schemas/GetTableSortParams'
          type: array
          title: Params
          description: The sorting parameters for the query
          default: []
        show_owned_only:
          type: boolean
          title: Show Owned Only
          default: false
        show_accessible_only:
          type: boolean
          title: Show Accessible Only
          default: false
      type: object
      title: GetAppTableParams
    PaginatedResponse:
      properties:
        items:
          items: {}
          type: array
          title: Items
        page:
          type: integer
          title: Page
        pages:
          type: integer
          title: Pages
        size:
          type: integer
          title: Size
        total:
          type: integer
          title: Total
      type: object
      required:
        - items
        - page
        - pages
        - size
        - total
      title: PaginatedResponse
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    GetTableSortParams:
      properties:
        col:
          type: string
          title: Col
        order:
          type: string
          enum:
            - asc
            - desc
          title: Order
        multiple:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Multiple
      type: object
      required:
        - col
        - order
        - multiple
      title: GetTableSortParams
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````