Skip to main content
GET
/
posts
/
{id}
/
versions
List post draft versions
curl --request GET \
  --url https://app.tryordinal.com/api/v1/posts/{id}/versions \
  --header 'Authorization: Bearer <token>'
import requests

url = "https://app.tryordinal.com/api/v1/posts/{id}/versions"

headers = {"Authorization": "Bearer <token>"}

response = requests.get(url, headers=headers)

print(response.text)
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};

fetch('https://app.tryordinal.com/api/v1/posts/{id}/versions', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://app.tryordinal.com/api/v1/posts/{id}/versions",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main

import (
"fmt"
"net/http"
"io"
)

func main() {

url := "https://app.tryordinal.com/api/v1/posts/{id}/versions"

req, _ := http.NewRequest("GET", url, nil)

req.Header.Add("Authorization", "Bearer <token>")

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.get("https://app.tryordinal.com/api/v1/posts/{id}/versions")
.header("Authorization", "Bearer <token>")
.asString();
require 'uri'
require 'net/http'

url = URI("https://app.tryordinal.com/api/v1/posts/{id}/versions")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'

response = http.request(request)
puts response.read_body
{
  "postId": "d4f8e2a1-3b7c-4e9d-8f2a-1c5b9e7d3a6f",
  "channels": [
    {
      "channel": "LinkedIn",
      "versions": [
        {
          "id": "01HQZ3VXK9E8R4M2N6P7T8W9Y0",
          "createdAt": "2026-02-04T14:22:00.000Z",
          "authors": [
            {
              "id": "550e8400-e29b-41d4-a716-446655440001",
              "firstName": "Jane",
              "lastName": "Smith",
              "email": "jane@example.com"
            }
          ]
        },
        {
          "id": "01HQZ3T2M4N5P6Q7R8S9T0U1V2",
          "createdAt": "2026-02-04T13:58:00.000Z",
          "authors": [
            {
              "id": "550e8400-e29b-41d4-a716-446655440002",
              "firstName": "John",
              "lastName": "Doe",
              "email": "john@example.com"
            }
          ]
        }
      ],
      "nextCursor": "eyJvZmZzZXQiOjE1fQ=="
    }
  ]
}
{
"code": "BAD_REQUEST",
"message": "Bad Request",
"data": {
"errors": {
"publishAt": [
"Invalid date format"
],
"status": [
"Invalid enum value"
]
}
}
}
{
"code": "UNAUTHORIZED",
"message": "Invalid or unauthorized API key"
}
{
"code": "NOT_FOUND",
"message": "Post not found or does not belong to this workspace"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string<uuid>
required

Post ID (UUID)

Query Parameters

channel
enum<string>

Optional. Only return versions for this channel. Omit to return every channel that has an editor. Required when cursor is set.

Available options:
LinkedIn,
Facebook,
Instagram,
TikTok,
Discord,
Slack,
Webflow,
YouTubeShorts
limit
integer
default:15

Max versions returned per channel, newest first. Default 15, max 100.

Required range: 1 <= x <= 100
cursor
string

Pagination cursor from a previous response's channels[].nextCursor. Requires channel — each channel paginates independently.

Response

Version history grouped by channel

postId
string<uuid>
required
channels
object[]
required