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

# Get a clipboard

> Returns a clipboard and its included context items. This is a legacy compatibility route kept for older clients; do not use it for new public API integrations.



## OpenAPI

````yaml /api-reference/openapi.json get /clipboards/{clipboardId}
openapi: 3.0.3
info:
  description: >-
    Generated from Ando's accepted public API v1 contract metadata. Current
    routes preserve legacy /api/v1 response envelopes while converging on the
    public https://api.ando.so/v1 shape.
  title: Ando Public API
  version: v1
servers:
  - description: Canonical public API host.
    url: https://api.ando.so/v1
security: []
tags:
  - description: Call detail and transcript routes.
    name: Calls
  - description: Clipboard detail routes.
    name: Clipboards
  - description: >-
      Workspace member detail routes. Existing v1 paths keep member
      compatibility spellings.
    name: Members
  - description: Message and conversation message routes.
    name: Messages
  - description: Public realtime connection and protocol routes.
    name: Realtime
  - description: Search routes.
    name: Search
  - description: Task routes.
    name: Tasks
  - description: Outbound webhook endpoint and delivery routes.
    name: Webhooks
paths:
  /clipboards/{clipboardId}:
    get:
      tags:
        - Clipboards
      summary: Get a clipboard
      description: >-
        Returns a clipboard and its included context items. This is a legacy
        compatibility route kept for older clients; do not use it for new public
        API integrations.
      operationId: getClipboard
      parameters:
        - description: Clipboard identifier.
          in: path
          name: clipboardId
          required: true
          schema:
            description: Clipboard identifier.
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ClipboardResponse'
          description: Clipboard details.
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          $ref: '#/components/responses/Forbidden'
        '404':
          $ref: '#/components/responses/NotFound'
        '409':
          $ref: '#/components/responses/Conflict'
        '429':
          $ref: '#/components/responses/RateLimited'
        '500':
          $ref: '#/components/responses/InternalError'
      security:
        - AndoApiKey: []
        - BearerApiKey: []
components:
  schemas:
    ClipboardResponse:
      additionalProperties: false
      description: Clipboard detail response.
      properties:
        created_at:
          description: Clipboard creation timestamp.
          type: string
          example: '2026-05-14T08:00:00.000Z'
          format: date-time
        description:
          description: Clipboard description.
          type: string
          nullable: true
        id:
          description: Clipboard identifier.
          type: string
          example: 01jzn7e61x3a7v9h2r7t2m3q4p
        items:
          description: Clipboard items.
          items:
            $ref: '#/components/schemas/ClipboardItem'
          type: array
        title:
          description: Clipboard title.
          type: string
          nullable: true
      required:
        - id
        - title
        - description
        - created_at
        - items
      type: object
    ClipboardItem:
      additionalProperties: false
      description: An item inside a clipboard.
      properties:
        author_name:
          description: Message author name.
          type: string
          nullable: true
        content:
          description: Message or file text content.
          type: string
          nullable: true
        created_at:
          description: Creation timestamp.
          type: string
          format: date-time
          nullable: true
        display_name:
          description: Workspace member display name.
          type: string
          nullable: true
        id:
          description: Item identifier.
          type: string
          example: 01jzn7e61x3a7v9h2r7t2m3q4p
        mime_type:
          description: File MIME type.
          type: string
          nullable: true
        name:
          description: Conversation or file name.
          type: string
          nullable: true
        title:
          description: Clipboard item title.
          type: string
          nullable: true
        type:
          description: >-
            Clipboard item type. The member value is a v1 compatibility spelling
            for a workspace member item.
          enum:
            - message
            - member
            - conversation
            - file
          type: string
        url:
          description: File URL.
          type: string
          nullable: true
      required:
        - type
        - id
      type: object
    LegacyErrorResponse:
      additionalProperties: false
      description: Current compatibility error envelope used by legacy /api/v1 routes.
      properties:
        error:
          description: Error message.
          type: string
        error_code:
          description: Optional machine-readable error code.
          type: string
          nullable: true
        missing_scopes:
          description: Missing scopes.
          items:
            description: Scope.
            type: string
          type: array
      required:
        - error
      type: object
    PublicApiErrorResponse:
      additionalProperties: false
      description: Target public API error envelope.
      properties:
        error:
          additionalProperties: false
          description: Error details.
          properties:
            code:
              description: Machine-readable error code.
              type: string
            message:
              description: Human-readable error message.
              type: string
            request_id:
              description: Request identifier.
              type: string
              nullable: true
          required:
            - code
            - message
          type: object
      required:
        - error
      type: object
  responses:
    BadRequest:
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/LegacyErrorResponse'
      description: Bad request.
    Unauthorized:
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/LegacyErrorResponse'
      description: Missing or invalid API key.
    Forbidden:
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/LegacyErrorResponse'
      description: Forbidden.
    NotFound:
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/LegacyErrorResponse'
      description: Not found.
    Conflict:
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/LegacyErrorResponse'
      description: Conflict.
    RateLimited:
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/PublicApiErrorResponse'
      description: Rate limit or quota exceeded.
    InternalError:
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/LegacyErrorResponse'
      description: Internal server error.
  securitySchemes:
    AndoApiKey:
      description: Workspace API key. Current accepted keys use the ando_sk_ prefix.
      in: header
      name: x-api-key
      type: apiKey
    BearerApiKey:
      bearerFormat: ando_sk
      description: Compatibility transport for workspace API keys.
      scheme: bearer
      type: http

````