GET
/posts/{postId}Get a post
Get a single post by ID with full details
Parameters
| Name | In | Type | Description |
|---|---|---|---|
postIdrequired | path | string | Post ID |
Response
Post details
| Field | Type | Description |
|---|---|---|
idrequired | string | TypeID - a type-prefixed UUID |
titlerequired | string | |
contentrequired | string | |
contentJsonrequired | object | null | Rich text content as TipTap JSON |
voteCountrequired | number | |
commentCountrequired | number | |
boardIdrequired | string | TypeID - a type-prefixed UUID |
boardSlugrequired | string | Slug of the parent board |
boardNamerequired | string | Name of the parent board |
statusIdrequired | string | null | |
authorNamerequired | string | null | |
authorEmailrequired | string | null | |
ownerIdrequired | string | null | Assigned team member ID |
tagsrequired | object[] | Tags assigned to this post |
roadmapIdsrequired | string[] | IDs of roadmaps this post belongs to |
pinnedCommentrequired | object | null | Pinned comment used as official response |
createdAtrequired | string | ISO 8601 timestamp |
updatedAtrequired | string | ISO 8601 timestamp |
deletedAtrequired | string | null | When the post was deleted, null if active |
Errors
401Unauthorized404Post not foundExample request
curl \
"https://feedback.quackback.io/api/v1/posts/:postId" \
-H "Authorization: Bearer qb_your_api_key_here"