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

# Get one post

> Reads a single post by id. Ids do not cross workspaces.



## OpenAPI

````yaml /openapi.json get /api/entities/Post/{id}
openapi: 3.1.0
info:
  title: Reputably API
  version: 1.0.0
  description: >-
    The HTTP surface an agent credential can reach. It is read plus safe writes:
    you can read your reputation data, generate drafts, queue reports and run
    first-time tracking setup. You cannot send anything to an external platform,
    trigger syncs, touch billing or manage credentials.


    The same endpoints back the MCP server, so anything documented here is
    reachable both ways.
servers:
  - url: https://app.reputably.net
    description: Reputably
  - url: https://your-domain.example
    description: Your own verified white-label domain
security:
  - agentKey: []
tags:
  - name: Businesses
    description: The locations you track, their plan usage and AI-generated insights.
  - name: Reviews
    description: Google and Facebook reviews, including which still need a reply.
  - name: Brand mentions
    description: Mentions across X, Reddit, YouTube, Facebook communities and the open web.
  - name: Brand tracking
    description: The trackers that find mentions, and competitor share of voice.
  - name: Leads
    description: Buying signals detected in mentions, with the public post to reply to.
  - name: AI Visibility
    description: >-
      Whether AI assistants recommend the business, what they cite, and how it
      moves.
  - name: AI Traffic
    description: Which AI crawlers read the website, and who arrives from an AI answer.
  - name: Posts
    description: Google Business Profile posts and drafts.
  - name: Reports
    description: Queued report renders and their CSV output.
  - name: Setup
    description: First-time tracking configuration.
  - name: Account
    description: Workspaces, notifications, sync status and prospect audits.
paths:
  /api/entities/Post/{id}:
    get:
      tags:
        - Posts
      summary: Get one post
      description: Reads a single post by id. Ids do not cross workspaces.
      operationId: getPost
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
          description: The post id.
        - name: X-Workspace-Id
          in: header
          required: false
          schema:
            type: string
          description: >-
            Which workspace to read. Omit it and you get the account’s home
            workspace, which on an agency account is often not where the live
            businesses are. A workspace this credential cannot read is refused
            with 403 rather than quietly answered from the default.
      responses:
        '200':
          description: The post.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Post'
        '401':
          description: Missing or invalid credential.
        '403':
          description: Not readable by this credential, or not in this workspace.
        '404':
          description: No such post in this workspace.
components:
  schemas:
    Post:
      type: object
      title: Post
      properties:
        id:
          type: string
          description: Unique id.
        workspace_id:
          type: string
        business_location_id:
          type: string
        platform:
          type: string
          enum:
            - gbp
          description: >-
            Forward-compat enum. Only 'gbp' in PR-16; future PRs add
            facebook/instagram/etc.
        post_type:
          type: string
          enum:
            - update
            - offer
            - event
          description: Update is PR-16 only; offer/event added in PR-18.
        status:
          type: string
          enum:
            - draft
            - scheduled
            - publishing
            - published
            - failed
            - cancelled
          description: >-
            PR-18 added 'scheduled' for future-dated posts the worker tick fires
            at scheduled_at.
        scheduled_at:
          type: string
          description: >-
            UTC timestamp. Null for immediate-publish or already-published
            posts.
        content:
          type: object
        external_post_id:
          type: string
          description: GBP returns 'accounts/X/locations/Y/localPosts/Z'. Stored verbatim.
        published_at:
          type: string
        error_message:
          type: string
        error_count:
          type: integer
        ai_generated:
          type: boolean
        ai_chat_session_id:
          type: string
        is_active:
          type: boolean
  securitySchemes:
    agentKey:
      type: http
      scheme: bearer
      description: >-
        An agent key (`rpk_...`) created in Settings → API & MCP, sent as
        `Authorization: Bearer rpk_...`. Bearer only: a cookie session can never
        drive this API. An OAuth 2.1 access token obtained from the same host
        works identically and lands on the same ceiling.

````