Skip to content
GET/posts/{postId}

Get a post

Get a single post by ID with full details

Parameters

NameInTypeDescription
postIdrequiredpathstringPost ID

Response

Post details

FieldTypeDescription
idrequiredstringTypeID - a type-prefixed UUID
titlerequiredstring
contentrequiredstring
contentJsonrequiredobject | nullRich text content as TipTap JSON
voteCountrequirednumber
commentCountrequirednumber
boardIdrequiredstringTypeID - a type-prefixed UUID
boardSlugrequiredstringSlug of the parent board
boardNamerequiredstringName of the parent board
statusIdrequiredstring | null
authorNamerequiredstring | null
authorEmailrequiredstring | null
ownerIdrequiredstring | nullAssigned team member ID
tagsrequiredobject[]Tags assigned to this post
roadmapIdsrequiredstring[]IDs of roadmaps this post belongs to
pinnedCommentrequiredobject | nullPinned comment used as official response
createdAtrequiredstringISO 8601 timestamp
updatedAtrequiredstringISO 8601 timestamp
deletedAtrequiredstring | nullWhen the post was deleted, null if active

Errors

401Unauthorized
404Post not found

Example request

curl \
  "https://feedback.quackback.io/api/v1/posts/:postId" \
  -H "Authorization: Bearer qb_your_api_key_here"