> ## 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 published dashboards shared with the current user



## OpenAPI

````yaml /api-reference/openapi.json get /api/v1/dashboards/shared
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/v1/dashboards/shared:
    get:
      tags:
        - dashboards
      summary: List published dashboards shared with the current user
      operationId: list_shared_dashboards_api_v1_dashboards_shared_get
      parameters:
        - name: page
          in: query
          required: false
          schema:
            type: integer
            minimum: 1
            default: 1
            title: Page
        - name: page_size
          in: query
          required: false
          schema:
            type: integer
            maximum: 100
            minimum: 1
            default: 20
            title: Page Size
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DashboardListResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    DashboardListResponse:
      properties:
        items:
          items:
            $ref: '#/components/schemas/DashboardSummaryResponse'
          type: array
          title: Items
        total:
          type: integer
          title: Total
        page:
          type: integer
          title: Page
        page_size:
          type: integer
          title: Page Size
        has_next:
          type: boolean
          title: Has Next
      type: object
      required:
        - items
        - total
        - page
        - page_size
        - has_next
      title: DashboardListResponse
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    DashboardSummaryResponse:
      properties:
        id:
          type: string
          title: Id
        title:
          type: string
          title: Title
        description:
          anyOf:
            - type: string
            - type: 'null'
          title: Description
        slug:
          anyOf:
            - type: string
            - type: 'null'
          title: Slug
        status:
          $ref: '#/components/schemas/DashboardStatus'
        visibility:
          $ref: '#/components/schemas/DashboardVisibility'
        version:
          type: integer
          title: Version
        component_count:
          type: integer
          title: Component Count
        created_by:
          anyOf:
            - type: string
            - type: 'null'
          title: Created By
        agent_id:
          anyOf:
            - type: integer
            - type: 'null'
          title: Agent Id
        created_at:
          type: string
          format: date-time
          title: Created At
        updated_at:
          type: string
          format: date-time
          title: Updated At
      type: object
      required:
        - id
        - title
        - description
        - slug
        - status
        - visibility
        - version
        - component_count
        - created_by
        - created_at
        - updated_at
      title: DashboardSummaryResponse
      description: Lightweight item used in list responses.
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
    DashboardStatus:
      type: string
      enum:
        - draft
        - published
        - archived
      title: DashboardStatus
    DashboardVisibility:
      type: string
      enum:
        - private
        - organization
        - public
      title: DashboardVisibility
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````

## Related topics

- [List Shared Mailboxes](/api-reference/integrations/list-shared-mailboxes.md)
- [List dashboards](/api-reference/dashboards/list-dashboards.md)
- [Suggest Shared Mailboxes](/api-reference/integrations/suggest-shared-mailboxes.md)
- [Add a chart to the user's chat dashboard (user-triggered)](/api-reference/charts/add-a-chart-to-the-users-chat-dashboard-user-triggered.md)
- [Get published dashboard by slug (public access)](/api-reference/dashboards/get-published-dashboard-by-slug-public-access.md)
