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

# Get Active Market Slugs

> Retrieves slugs, strike prices, tickers, and deadlines for all active markets and groups. Group markets are nested under their parent group.



## OpenAPI

````yaml GET /markets/active/slugs
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:
  /markets/active/slugs:
    get:
      tags:
        - Markets
      summary: Get active market slugs with metadata
      description: >-
        Retrieves slugs, strike prices, tickers, and deadlines for all active
        markets and groups. Group markets are nested under their parent group.
      operationId: MarketController_getActiveSlugs
      parameters: []
      responses:
        '200':
          description: List of active market and group slugs with metadata
          content:
            application/json:
              schema:
                type: array
                items:
                  type: object
                  properties:
                    slug:
                      type: string
                      description: Market or group slug identifier
                      example: btc-price-prediction-2024
                    strikePrice:
                      type: string
                      nullable: true
                      description: Strike price (null for groups)
                      example: '50000'
                    ticker:
                      type: string
                      nullable: true
                      description: Asset ticker symbol
                      example: BTC
                    deadline:
                      type: string
                      nullable: true
                      format: date-time
                      description: Expiration deadline
                      example: '2024-12-31T23:59:59Z'
                    markets:
                      type: array
                      nullable: true
                      description: Nested markets (group entries only)
                      items:
                        type: object
                        properties:
                          slug:
                            type: string
                  required:
                    - slug
        '500':
          description: Server error when retrieving market slugs

````