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

# List archived social posts

> List archived social posts

**CLI:**

```bash theme={null}
puffle calendar post archived
```

## Overview

List archived social posts

This page documents `get /api/calendar/posts/archived`. Use the request and response sections on this page for accepted parameters, payload fields, response fields, and authentication behavior.

## AI agent notes

* Confirm the operation matches the user's intent before calling it.
* For write operations, confirm the user intends to change state.
* Surface validation, permission, and not-found errors instead of retrying unchanged.


## OpenAPI

````yaml get /api/calendar/posts/archived
openapi: 3.0.3
info:
  title: Puffle API
  version: 1.0.0
  description: >-
    HTTP API for the Puffle GTM platform - strategy planning, campaign-backed
    Outbound execution, Puffle Agent runs, sender management, and Unibox reply
    workflows. Designed for operation by both humans and autonomous AI agents.
    Agents should start at the [Agent Playbook](/guides/agent-playbook) which
    prescribes a workspace-context check (`GET /api/context`) and core user
    journeys with exact call ordering.
  contact:
    name: Puffle Support
    url: https://puffle.ai
servers:
  - url: https://app.puffle.ai
    description: Production
security:
  - bearerAuth: []
tags:
  - name: Campaigns
    description: >-
      Campaign-backed Outbound execution. These endpoints manage draft,
      launching, active, paused, and completed Outbound runs with sequence
      nodes, contacts, and sender accounts.
  - name: Accounts
    description: Signed-in user account, settings, and workspace context endpoints.
  - name: Senders
    description: >-
      Connected sender accounts, email inboxes, sending domains, DNS
      verification, warmup, and sender capacity.
  - name: Socials
    description: >-
      Social post scheduling and inbox — schedule, publish, archive, and delete
      posts across LinkedIn, Twitter, Threads, Bluesky via the Late (late.ai)
      integration. Connect social accounts via OAuth, pull analytics, monitor
      mentions.
paths:
  /api/calendar/posts/archived:
    get:
      tags:
        - Socials
      summary: List archived social posts
      description: >-
        Returns every post in the caller's calendar with a non-null
        `archived_at`, ordered by archive time (newest first). Archived posts
        are recoverable via `restoreSocialPost`, or permanently deletable via
        `permanentDeleteSocialPost`. Each post is enriched with the first linked
        account's profile picture and display name.
      operationId: listArchivedSocialPosts
      parameters: []
      responses:
        '200':
          description: Archived posts (possibly empty).
          content:
            application/json:
              schema:
                type: object
                properties:
                  posts:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                          format: uuid
                        calendar_id:
                          type: string
                          format: uuid
                        title:
                          type: string
                          nullable: true
                        content:
                          type: string
                          nullable: true
                        hashtags:
                          type: array
                          items:
                            type: string
                        channels:
                          type: array
                          items:
                            type: string
                        scheduled_at:
                          type: string
                          format: date-time
                          nullable: true
                        account_ids:
                          type: array
                          items:
                            type: string
                            format: uuid
                        status:
                          type: string
                          enum:
                            - draft
                            - scheduled
                            - posted
                        late_post_id:
                          type: string
                          nullable: true
                        media_items:
                          type: array
                          items:
                            type: object
                            properties:
                              url:
                                type: string
                                format: uri
                              type:
                                type: string
                                enum:
                                  - image
                                  - video
                                  - document
                            required:
                              - url
                              - type
                            additionalProperties: false
                        archived_at:
                          type: string
                          format: date-time
                          description: Always non-null in this response.
                        account_profile_picture:
                          type: string
                          nullable: true
                        account_display_name:
                          type: string
                          nullable: true
                      required:
                        - id
                        - calendar_id
                        - title
                        - content
                        - hashtags
                        - channels
                        - scheduled_at
                        - account_ids
                        - status
                        - late_post_id
                        - media_items
                        - archived_at
                      additionalProperties: false
                      description: >-
                        A soft-deleted post. Archival clears `late_post_id` so
                        Late stops publishing it.
                  postsUrl:
                    type: string
                    description: Posts page for reviewing archived posts.
                required:
                  - posts
                  - postsUrl
                additionalProperties: false
              examples:
                default:
                  value:
                    posts:
                      - id: pst_archive_1
                        calendar_id: cal_1111
                        title: Old draft
                        content: Never ended up shipping this one
                        hashtags: []
                        channels:
                          - linkedin
                        scheduled_at: null
                        account_ids:
                          - aaaa1111-1111-1111-1111-111111111111
                        status: draft
                        late_post_id: null
                        media_items: []
                        archived_at: '2026-04-15T18:22:00Z'
                        account_profile_picture: https://…/jane.jpg
                        account_display_name: Jane Doe
                    postsUrl: /profile/socials
        '401':
          description: Missing or invalid Bearer token.
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                required:
                  - error
                additionalProperties: false
              examples:
                default:
                  value:
                    error: Unauthorized
        '500':
          description: Database error.
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                required:
                  - error
                additionalProperties: false
              examples:
                default:
                  value:
                    error: Internal server error
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: pk_live_...

````