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

# List Property Keys

> Returns all property keys with their options, sorted by slug



## OpenAPI

````yaml GET /property-keys
openapi: 3.0.0
info:
  title: Limitless Exchange API
  description: >-
    Production-ready REST API for prediction market trading, portfolio
    management, and market data on Limitless Exchange (Base L2).
  version: '1.0'
  contact:
    name: API Support
    url: https://limitless.exchange
    email: help@limitless.network
servers:
  - url: https://api.limitless.exchange
    description: Production API
security: []
tags:
  - name: Authentication
    description: User authentication and session management
  - name: Markets
    description: Browse, search, and analyze prediction markets
  - name: Market Navigation
    description: Navigation tree, market pages, and property filters
  - name: Trading
    description: Create, manage, and cancel orders
  - name: Portfolio
    description: Position tracking, trade history, and performance
  - name: API Tokens
    description: Scoped API token management for partner integrations
  - name: Partner Accounts
    description: Sub-account creation and allowance recovery for partner integrations
  - name: System
    description: Public API state and availability information
paths:
  /property-keys:
    get:
      tags:
        - Market Navigation
      summary: List property keys
      description: Returns all property keys with their options, sorted by slug
      operationId: MarketNavigationController_listPropertyKeys
      parameters: []
      responses:
        '200':
          description: Property keys retrieved successfully
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/PropertyKeyResponseDto'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponseDto'
components:
  schemas:
    PropertyKeyResponseDto:
      type: object
      properties:
        id:
          type: string
          description: Unique identifier of the property key
        name:
          type: string
          description: Display name of the property key
        slug:
          type: string
          description: URL slug of the property key
        type:
          type: string
          description: Type of property key
          enum:
            - select
            - multi-select
        metadata:
          type: object
          description: Additional metadata for the property key
        isSystem:
          type: boolean
          description: Whether this is a system-defined property key
        sortOrder:
          type: number
          description: Sort order for the property key
        hidden:
          type: boolean
          description: Whether this property key is hidden from public views
        options:
          description: Available options for this property key
          type: array
          items:
            $ref: '#/components/schemas/PropertyOptionResponseDto'
        createdAt:
          format: date-time
          type: string
          description: Creation timestamp
        updatedAt:
          format: date-time
          type: string
          description: Last update timestamp
      required:
        - id
        - name
        - slug
        - type
        - metadata
        - isSystem
        - sortOrder
        - hidden
        - createdAt
        - updatedAt
    ErrorResponseDto:
      type: object
      properties:
        message:
          type: string
          description: Error message
          example: Invalid order data
      required:
        - message
    PropertyOptionResponseDto:
      type: object
      properties:
        id:
          type: string
          description: Unique identifier of the property option
        propertyKeyId:
          type: string
          description: Property key ID this option belongs to
        value:
          type: string
          description: Value identifier for the option
        label:
          type: string
          description: Display label for the option
        sortOrder:
          type: number
          description: Sort order for the option
        parentOptionId:
          type: string
          description: Parent option ID for hierarchical options
          nullable: true
        metadata:
          type: object
          description: Additional metadata for the option
        createdAt:
          format: date-time
          type: string
          description: Creation timestamp
        updatedAt:
          format: date-time
          type: string
          description: Last update timestamp
      required:
        - id
        - propertyKeyId
        - value
        - label
        - sortOrder
        - metadata
        - createdAt
        - updatedAt

````