curl --request GET \
--url https://api.superx.so/v1/workers/suggestions \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.superx.so/v1/workers/suggestions"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.superx.so/v1/workers/suggestions', 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://api.superx.so/v1/workers/suggestions",
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://api.superx.so/v1/workers/suggestions"
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://api.superx.so/v1/workers/suggestions")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.superx.so/v1/workers/suggestions")
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{
"data": [
{
"id": 4821,
"worker_id": 12,
"text": "Three things we changed after watching ten people use the onboarding.",
"status": "to_review",
"reference": {
"source": "collection"
},
"generated_at": "2026-09-12T08:00:00.000Z",
"drafted_at": null,
"scheduled_at": null,
"dismissed_at": null,
"post_id": null
},
{
"id": 4818,
"worker_id": 12,
"text": "The onboarding rewrite doubled activation. Here is what we cut.",
"status": "drafted",
"reference": null,
"generated_at": "2026-09-11T08:00:00.000Z",
"drafted_at": "2026-09-11T09:14:00.000Z",
"scheduled_at": null,
"dismissed_at": null,
"post_id": "V1StGXR8_Z5jdHi6B-myT"
}
],
"pagination": {
"page": 1,
"limit": 20,
"has_more": false,
"total": 2
}
}{
"error": {
"code": "invalid_parameter",
"message": "since must be a UTC ISO-8601 timestamp"
}
}{
"error": {
"code": "invalid_api_key",
"message": "Unknown or revoked API key"
}
}{
"error": "subscription_required: The SuperX API requires an active subscription"
}{
"error": {
"code": "worker_not_found",
"message": "No worker with that worker_id belongs to this account."
}
}{
"error": {
"code": "rate_limited",
"message": "Rate limit exceeded for the Pro plan (30 requests/min). Upgrade for higher limits.",
"retry_after": 42
}
}{
"error": {
"code": "internal_error",
"message": "Failed to fetch posts"
}
}{
"error": {
"code": "accounts_unavailable",
"message": "Account information is temporarily unavailable. Try again shortly."
}
}List Worker suggestions
The posts the account’s Workers wrote, newest first. The default
status=to_review is the app’s “To review” queue: suggestions nobody
has drafted, scheduled or dismissed yet.
Each row carries the text, the Worker that wrote it, the timestamps of
whatever has been done with it, and post_id once it was saved as a
post (join it to GET /v1/scheduled-posts). reference says what kind
of source the Worker wrote from; the Worker’s own collection and
reference ids stay private.
Reading changes nothing and spends no AI credits. Act on a row with the draft, schedule or dismiss endpoints below.
curl --request GET \
--url https://api.superx.so/v1/workers/suggestions \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.superx.so/v1/workers/suggestions"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.superx.so/v1/workers/suggestions', 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://api.superx.so/v1/workers/suggestions",
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://api.superx.so/v1/workers/suggestions"
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://api.superx.so/v1/workers/suggestions")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.superx.so/v1/workers/suggestions")
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{
"data": [
{
"id": 4821,
"worker_id": 12,
"text": "Three things we changed after watching ten people use the onboarding.",
"status": "to_review",
"reference": {
"source": "collection"
},
"generated_at": "2026-09-12T08:00:00.000Z",
"drafted_at": null,
"scheduled_at": null,
"dismissed_at": null,
"post_id": null
},
{
"id": 4818,
"worker_id": 12,
"text": "The onboarding rewrite doubled activation. Here is what we cut.",
"status": "drafted",
"reference": null,
"generated_at": "2026-09-11T08:00:00.000Z",
"drafted_at": "2026-09-11T09:14:00.000Z",
"scheduled_at": null,
"dismissed_at": null,
"post_id": "V1StGXR8_Z5jdHi6B-myT"
}
],
"pagination": {
"page": 1,
"limit": 20,
"has_more": false,
"total": 2
}
}{
"error": {
"code": "invalid_parameter",
"message": "since must be a UTC ISO-8601 timestamp"
}
}{
"error": {
"code": "invalid_api_key",
"message": "Unknown or revoked API key"
}
}{
"error": "subscription_required: The SuperX API requires an active subscription"
}{
"error": {
"code": "worker_not_found",
"message": "No worker with that worker_id belongs to this account."
}
}{
"error": {
"code": "rate_limited",
"message": "Rate limit exceeded for the Pro plan (30 requests/min). Upgrade for higher limits.",
"retry_after": 42
}
}{
"error": {
"code": "internal_error",
"message": "Failed to fetch posts"
}
}{
"error": {
"code": "accounts_unavailable",
"message": "Account information is temporarily unavailable. Try again shortly."
}
}Authorizations
A SuperX API key ("sxk_..."), created in the SuperX app under Account > API / MCP / CLI. Keys are server-side secrets.
Query Parameters
Account to act on, from GET /v1/accounts. Defaults to your main account. An id outside your accounts returns 404 account_not_found.
to_review (default) = waiting on a person; drafted, scheduled and dismissed = already acted on; all = every suggestion. A dismissed suggestion reads as dismissed even if it was saved first.
to_review, drafted, scheduled, dismissed, all Narrow to one Worker by its numeric id (from GET /v1/workers). An unknown or foreign id returns 404 worker_not_found.
Page size, 1 to 100.
1 <= x <= 1001-based page number.
x >= 1