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

# Get Share



## OpenAPI

````yaml /api-reference/openapi.json get /api/conversations/share/{share_id}
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/conversations/share/{share_id}:
    get:
      tags:
        - share
      summary: Get Share
      operationId: get_share_api_conversations_share__share_id__get
      parameters:
        - name: share_id
          in: path
          required: true
          schema:
            type: string
            title: Share Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SharedConversationResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    SharedConversationResponse:
      properties:
        title:
          type: string
          title: Title
        agentName:
          type: string
          title: Agentname
        messages:
          items:
            $ref: '#/components/schemas/ShareMessageIn'
          type: array
          title: Messages
        createdAt:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Createdat
      type: object
      required:
        - title
        - agentName
        - messages
        - createdAt
      title: SharedConversationResponse
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ShareMessageIn:
      properties:
        role:
          type: string
          title: Role
        content:
          type: string
          title: Content
          default: ''
        timestamp:
          anyOf:
            - type: integer
            - type: 'null'
          title: Timestamp
        toolCalls:
          items: {}
          type: array
          title: Toolcalls
          default: []
      type: object
      required:
        - role
      title: ShareMessageIn
    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
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````

## Related topics

- [Delete Share](/api-reference/share/delete-share.md)
- [Create Share](/api-reference/share/create-share.md)
- [List Shared Mailboxes](/api-reference/integrations/list-shared-mailboxes.md)
- [Suggest Shared Mailboxes](/api-reference/integrations/suggest-shared-mailboxes.md)
- [List published dashboards shared with the current user](/api-reference/dashboards/list-published-dashboards-shared-with-the-current-user.md)
