curl --request POST \
--url https://api.superx.so/v1/workers/suggestions/{id}/draft \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"account_id": "1178367350552305665"
}
'import requests
url = "https://api.superx.so/v1/workers/suggestions/{id}/draft"
payload = { "account_id": "1178367350552305665" }
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({account_id: '1178367350552305665'})
};
fetch('https://api.superx.so/v1/workers/suggestions/{id}/draft', 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/{id}/draft",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'account_id' => '1178367350552305665'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.superx.so/v1/workers/suggestions/{id}/draft"
payload := strings.NewReader("{\n \"account_id\": \"1178367350552305665\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.superx.so/v1/workers/suggestions/{id}/draft")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"account_id\": \"1178367350552305665\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.superx.so/v1/workers/suggestions/{id}/draft")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"account_id\": \"1178367350552305665\"\n}"
response = http.request(request)
puts response.read_body{
"data": {
"id": 4821,
"post_id": "V1StGXR8_Z5jdHi6B-myT",
"drafted_at": "2026-09-12T09:14:00.000Z"
}
}{
"error": {
"code": "already_saved",
"message": "This suggestion was already saved as a post."
}
}{
"error": {
"code": "invalid_api_key",
"message": "Unknown or revoked API key"
}
}{
"error": {
"code": "insufficient_scope",
"message": "This API key is read-only. Create a key with the write scope to use this endpoint."
}
}{
"error": {
"code": "suggestion_not_found",
"message": "No worker suggestion with that 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": "upstream_error",
"message": "Failed to fetch scheduled posts. Try again shortly."
}
}{
"error": {
"code": "upstream_unavailable",
"message": "The scheduling service is temporarily unavailable. Retry with the same Idempotency-Key."
}
}Save a suggestion as a draft
Turn one Worker suggestion into a DRAFT post. Nothing is posted to X:
the draft shows up in the user’s Drafts in the app and at the top of
GET /v1/scheduled-posts?status=draft, and the response gives you its
post_id directly.
The text is saved exactly as the Worker wrote it. To change the wording
first, rewrite it with POST /v1/posts/remix or
POST /v1/tools/rephrase, save your version with
POST /v1/scheduled-posts, then dismiss the original.
One suggestion can only be saved once: a second draft or schedule call
on the same id returns 400 already_saved, and a dismissed one returns
400 already_dismissed. Naturally one-shot, so there is no
Idempotency-Key support. Works for your main account or any account
linked to it (account_id); accounts shared with you are read-only.
curl --request POST \
--url https://api.superx.so/v1/workers/suggestions/{id}/draft \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"account_id": "1178367350552305665"
}
'import requests
url = "https://api.superx.so/v1/workers/suggestions/{id}/draft"
payload = { "account_id": "1178367350552305665" }
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({account_id: '1178367350552305665'})
};
fetch('https://api.superx.so/v1/workers/suggestions/{id}/draft', 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/{id}/draft",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'account_id' => '1178367350552305665'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.superx.so/v1/workers/suggestions/{id}/draft"
payload := strings.NewReader("{\n \"account_id\": \"1178367350552305665\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.superx.so/v1/workers/suggestions/{id}/draft")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"account_id\": \"1178367350552305665\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.superx.so/v1/workers/suggestions/{id}/draft")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"account_id\": \"1178367350552305665\"\n}"
response = http.request(request)
puts response.read_body{
"data": {
"id": 4821,
"post_id": "V1StGXR8_Z5jdHi6B-myT",
"drafted_at": "2026-09-12T09:14:00.000Z"
}
}{
"error": {
"code": "already_saved",
"message": "This suggestion was already saved as a post."
}
}{
"error": {
"code": "invalid_api_key",
"message": "Unknown or revoked API key"
}
}{
"error": {
"code": "insufficient_scope",
"message": "This API key is read-only. Create a key with the write scope to use this endpoint."
}
}{
"error": {
"code": "suggestion_not_found",
"message": "No worker suggestion with that 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": "upstream_error",
"message": "Failed to fetch scheduled posts. Try again shortly."
}
}{
"error": {
"code": "upstream_unavailable",
"message": "The scheduling service is temporarily unavailable. Retry with the same Idempotency-Key."
}
}Authorizations
A SuperX API key ("sxk_..."), created in the SuperX app under Account > API / MCP / CLI. Keys are server-side secrets.
Path Parameters
The suggestion's numeric id, from GET /v1/workers/suggestions.
x >= 1Body
Any account you own, meaning your main account (the default when omitted) or one linked to it. An account shared with you returns 403 writes_main_account_only.
Response
The suggestion and the draft it became.
Show child attributes
Show child attributes