---
title: "Get post results"
method: GET
path: "/v1/post-results"
tags: ["Post Results"]
---

# Get post results

`GET /v1/post-results`

Get a paginated result for post results based on the applied filters

## Query parameters

- `offset` number
- `limit` number
- `post_id` string[]
- `platform` string[]

## Response `200`

Paginated data set for post results.

- object
  - `data` PostResultDto[], required
    - `id` string, required — The unique identifier of the post result
    - `post_id` string, required — The ID of the associated post
    - `success` boolean, required — Indicates if the operation was successful
    - `social_account_id` number, required — The ID of the associated Social Account
    - `error` object, required — Error message if the operation failed
    - `platform_data` object, required — Platform-specific data
      - `id` string — Platform-specific ID
      - `url` string — URL of the posted content
      - `username` string — Username on the platform
      - `platform_video_id` string, nullable — TikTok only: the final public video id, usable against TikTok's own APIs. `id` is TikTok's publish/processing id. Populated once TikTok moderation exposes the post (re-poll until non-null); always null for drafts and for other platforms, where `id` is already the native post id.
  - `meta` object, required
    - `total` number, required — Total number of items available.
    - `offset` number, required — Number of items skipped.
    - `limit` number, required — Maximum number of items returned.
    - `next` string, nullable, required — URL to the next page of results, or null if none.

## Other responses

- `500` — Internal server error when fetching post results.

---

[API](https://skmtc.dev/post-bridge/apis/post-bridge-api.md) · [All operations](https://skmtc.dev/post-bridge/apis/post-bridge-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/post-bridge/post-bridge-api/revisions/97ae826701f6/schema)
