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

# Get Active Feeds

> Get information about currently active market data feeds.

Args:
    request: FastAPI request object to access application state
    
Returns:
    Dictionary with active feeds information including last access times and expiration



## OpenAPI

````yaml /api-reference/openapi.json get /market-data/active-feeds
openapi: 3.1.0
info:
  title: Hummingbot API
  description: API for managing Hummingbot trading instances
  version: 1.0.1
servers:
  - url: http://localhost:8000
    description: Local development server
security: []
paths:
  /market-data/active-feeds:
    get:
      tags:
        - Market Data
      summary: Get Active Feeds
      description: |-
        Get information about currently active market data feeds.

        Args:
            request: FastAPI request object to access application state
            
        Returns:
            Dictionary with active feeds information including last access times and expiration
      operationId: get_active_feeds_market_data_active_feeds_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
      security:
        - HTTPBasic: []
components:
  securitySchemes:
    HTTPBasic:
      type: http
      scheme: basic

````