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

# List Hub

> List all agents published in the Hub.



## OpenAPI

````yaml /api-reference/openapi.json get /api/hub
openapi: 3.1.0
info:
  title: apowerb API
  description: REST API of the apowerb agentic framework (open-source edition).
  version: 0.1.2
  license:
    name: MIT
    url: https://github.com/apowerb/apowerb/blob/main/LICENSE
servers:
  - url: https://api.example.com
    description: Your apowerb instance
  - url: http://localhost:8000
    description: Local stack
security: []
paths:
  /api/hub:
    get:
      tags:
        - hub
      summary: List Hub
      description: List all agents published in the Hub.
      operationId: list_hub_api_hub_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
      security:
        - HTTPBearer: []
components:
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````

## Related topics

- [Agent Hub](/guides/hub.md)
- [Get Hub](/api-reference/hub/get-hub.md)
- [Remove From Hub](/api-reference/hub/remove-from-hub.md)
- [Integrations](/guides/integrations.md)
- [Configuration](/configuration.md)
