Skip to content
Ordinal
Esc
↑↓navigate↵open⌘Jpreview

Get post version content

Read the plain-text copy of a single saved draft version for one channel’s editor. Get version IDs from GET /posts/{id}/versions.

Returns 404 NOT_FOUND when the channel has no editor for this post or the version ID can’t be read.

GET/posts/{id}/channels/{channel}/versions/{versionId}
Authorization
AuthorizationBearer token · headerrequired

API key authentication. Generate an API key from your workspace settings.

Path parameters
idstring<uuid>required

Post ID (UUID)

channelstringrequired

Channel whose editor version to read.

Allowed:LinkedInFacebookInstagramTikTokDiscordSlackWebflowYouTubeShorts
versionIdstringrequired

Version ID returned by the list versions endpoint.

Responses
200

Reconstructed plain-text copy for the requested version

postIdstring<uuid>required
channelstringrequired
Allowed:LinkedInFacebookInstagramTikTokDiscordSlackWebflowYouTubeShorts
versionIdstringrequired
copystringrequired

Reconstructed plain-text copy for the version.

401

Unauthorized - Missing or invalid API key

codestring
messagestring
404

Not Found - Resource does not exist

codestring
messagestring
Try it
Server
Authorization
Parameters
Request
curl -X GET 'https://app.tryordinal.com/api/v1/posts/497f6eca-6276-4993-bfeb-53cbbbba6f08/channels/LinkedIn/versions/string' \
  -H 'Authorization: Bearer YOUR_TOKEN'
Response
{
  "postId": "d4f8e2a1-3b7c-4e9d-8f2a-1c5b9e7d3a6f",
  "channel": "LinkedIn",
  "versionId": "01HQZ3VXK9E8R4M2N6P7T8W9Y0",
  "copy": "Here's the plain-text copy of this saved draft version..."
}