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

# Create Share



## OpenAPI

````yaml /api-reference/openapi.json post /api/conversations/share
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:
    post:
      tags:
        - share
      summary: Create Share
      operationId: create_share_api_conversations_share_post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ShareCreateRequest'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ShareCreateResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    ShareCreateRequest:
      properties:
        title:
          type: string
          title: Title
          default: Shared conversation
        agentName:
          type: string
          title: Agentname
          default: Assistant
        messages:
          items:
            $ref: '#/components/schemas/ShareMessageIn'
          type: array
          title: Messages
        createdAt:
          anyOf:
            - type: integer
            - type: 'null'
          title: Createdat
        isPublic:
          type: boolean
          title: Ispublic
          default: false
      type: object
      required:
        - messages
      title: ShareCreateRequest
    ShareCreateResponse:
      properties:
        shareId:
          type: string
          title: Shareid
        isPublic:
          type: boolean
          title: Ispublic
          default: false
      type: object
      required:
        - shareId
      title: ShareCreateResponse
    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

- [Get Share](/api-reference/share/get-share.md)
- [Delete Share](/api-reference/share/delete-share.md)
- [Create Session](/api-reference/adk/create-session.md)
- [Create Skill](/api-reference/skills/create-skill.md)
- [Create Agent](/api-reference/agents/create-agent.md)
