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

# List active announcements

> Returns service announcements that are currently visible, newest first. Each item carries a `seen` flag for the calling user. `window_start` and `window_end` describe the announced maintenance window and are absent for non-maintenance announcements. Free operation, consumes no credits.



## OpenAPI

````yaml /api-reference/openapi.json get /announcements
openapi: 3.0.0
info:
  description: >-
    Unified social media inbox API. Read and respond to comments, DMs, reviews,
    and mentions across Instagram, Facebook, Threads, Google Business Profile,
    TikTok, LinkedIn, and YouTube through a single REST API. X/Twitter and
    Trustpilot coming soon.
  title: SocialAPI.AI
  contact:
    name: SocialAPI.AI Support
    email: support@social-api.ai
  license:
    name: MIT
  version: '1.0'
servers:
  - url: https://api.social-api.ai/v1
security: []
paths:
  /announcements:
    get:
      tags:
        - Announcements
      summary: List active announcements
      description: >-
        Returns service announcements that are currently visible, newest first.
        Each item carries a `seen` flag for the calling user. `window_start` and
        `window_end` describe the announced maintenance window and are absent
        for non-maintenance announcements. Free operation, consumes no credits.
      responses:
        '200':
          description: Currently visible announcements
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/api_endpoints.AnnouncementsListResponse'
        '401':
          description: Invalid or missing API key
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/api_endpoints.ErrorResponse'
      security:
        - BearerAuth: []
components:
  schemas:
    api_endpoints.AnnouncementsListResponse:
      type: object
      properties:
        count:
          type: integer
          example: 1
        data:
          type: array
          items:
            $ref: '#/components/schemas/api_endpoints.AnnouncementItem'
    api_endpoints.ErrorResponse:
      type: object
      properties:
        error:
          $ref: '#/components/schemas/api_endpoints.ErrorBody'
    api_endpoints.AnnouncementItem:
      type: object
      properties:
        body:
          type: string
          example: We are upgrading our database infrastructure.
        id:
          type: string
          example: 9c1e7f2a-3b4d-4e5f-8a9b-0c1d2e3f4a5b
        kind:
          type: string
          example: maintenance
        link_label:
          type: string
          example: Status page
        link_url:
          type: string
          example: https://status.social-api.ai
        seen:
          type: boolean
          example: false
        title:
          type: string
          example: Scheduled maintenance
        window_end:
          type: string
          example: '2026-08-02T04:00:00Z'
        window_start:
          type: string
          example: '2026-08-02T02:00:00Z'
    api_endpoints.ErrorBody:
      type: object
      properties:
        code:
          type: string
          example: resource.not_found
        message:
          type: string
          example: Account not found
        meta:
          type: object
          additionalProperties: {}
  securitySchemes:
    BearerAuth:
      description: >-
        Prefix your API key with "Bearer ". Example: `Authorization: Bearer
        sapi_key_...`
      type: apiKey
      name: Authorization
      in: header

````