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

# List Properties

> List all properties created via API for the organization.

Use this endpoint to list all properties created via API.


## OpenAPI

````yaml GET /v1/property/list
openapi: 3.1.0
info:
  title: Bricked API
  description: API documentation for Bricked
  version: 1.0.0
servers:
  - url: https://api.bricked.ai
security:
  - apiKey: []
paths:
  /v1/property/list:
    get:
      summary: List Properties
      description: List all properties created via API for the organization.
      parameters:
        - name: page
          in: query
          required: false
          schema:
            type: integer
          description: Pagination offset page index (0-based)
      responses:
        '200':
          description: List of properties
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PropertyList'
components:
  schemas:
    PropertyList:
      type: object
      properties:
        properties:
          type: array
          description: Paginated property summaries
          items:
            type: object
            properties:
              id:
                type: string
                description: Property UUID
              address:
                type: string
                description: Address string
              createdAt:
                type: string
                description: Creation timestamp
        nextPage:
          type: integer
          description: Next page index when available
        hasMore:
          type: boolean
          description: True when more pages exist
  securitySchemes:
    apiKey:
      type: apiKey
      name: x-api-key
      in: header

````