Rewrite a post in your voice
curl --request POST \
--url https://api.superx.so/v1/posts/remix \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"text": "Most founders think they have a traffic problem. They have a positioning problem.",
"closeness": 70,
"instructions": "Make it a question."
}
'import requests
url = "https://api.superx.so/v1/posts/remix"
payload = {
"text": "Most founders think they have a traffic problem. They have a positioning problem.",
"closeness": 70,
"instructions": "Make it a question."
}
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({
text: 'Most founders think they have a traffic problem. They have a positioning problem.',
closeness: 70,
instructions: 'Make it a question.'
})
};
fetch('https://api.superx.so/v1/posts/remix', 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/posts/remix",
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([
'text' => 'Most founders think they have a traffic problem. They have a positioning problem.',
'closeness' => 70,
'instructions' => 'Make it a question.'
]),
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/posts/remix"
payload := strings.NewReader("{\n \"text\": \"Most founders think they have a traffic problem. They have a positioning problem.\",\n \"closeness\": 70,\n \"instructions\": \"Make it a question.\"\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/posts/remix")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"text\": \"Most founders think they have a traffic problem. They have a positioning problem.\",\n \"closeness\": 70,\n \"instructions\": \"Make it a question.\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.superx.so/v1/posts/remix")
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 \"text\": \"Most founders think they have a traffic problem. They have a positioning problem.\",\n \"closeness\": 70,\n \"instructions\": \"Make it a question.\"\n}"
response = http.request(request)
puts response.read_body{
"data": {
"text": "what if it was never a traffic problem?"
},
"meta": {
"credits_charged": 2,
"account_id": "1178367350552305665"
}
}Scheduling
Rewrite a post in your voice
Rewrites a post in the account’s own voice, as close to or as far from
the original as you ask. closeness: 0 keeps only the idea,
closeness: 100 stays very close to the original wording.
This is the same engine as the app composer’s Remix button, so a script and the app produce the same kind of output.
Nothing is posted, scheduled or stored: the response is TEXT for a
person to review, then send to POST /v1/posts/draft or
POST /v1/scheduled-posts.
Costs AI credits, measured from the models’ real cost and typically 2.
Spends no live-data allowance. Needs a key with the write scope.
POST
/
v1
/
posts
/
remix
Rewrite a post in your voice
curl --request POST \
--url https://api.superx.so/v1/posts/remix \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"text": "Most founders think they have a traffic problem. They have a positioning problem.",
"closeness": 70,
"instructions": "Make it a question."
}
'import requests
url = "https://api.superx.so/v1/posts/remix"
payload = {
"text": "Most founders think they have a traffic problem. They have a positioning problem.",
"closeness": 70,
"instructions": "Make it a question."
}
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({
text: 'Most founders think they have a traffic problem. They have a positioning problem.',
closeness: 70,
instructions: 'Make it a question.'
})
};
fetch('https://api.superx.so/v1/posts/remix', 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/posts/remix",
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([
'text' => 'Most founders think they have a traffic problem. They have a positioning problem.',
'closeness' => 70,
'instructions' => 'Make it a question.'
]),
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/posts/remix"
payload := strings.NewReader("{\n \"text\": \"Most founders think they have a traffic problem. They have a positioning problem.\",\n \"closeness\": 70,\n \"instructions\": \"Make it a question.\"\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/posts/remix")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"text\": \"Most founders think they have a traffic problem. They have a positioning problem.\",\n \"closeness\": 70,\n \"instructions\": \"Make it a question.\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.superx.so/v1/posts/remix")
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 \"text\": \"Most founders think they have a traffic problem. They have a positioning problem.\",\n \"closeness\": 70,\n \"instructions\": \"Make it a question.\"\n}"
response = http.request(request)
puts response.read_body{
"data": {
"text": "what if it was never a traffic problem?"
},
"meta": {
"credits_charged": 2,
"account_id": "1178367350552305665"
}
}Authorizations
A SuperX API key ("sxk_..."), created in the SuperX app under Account > API / MCP / CLI. Keys are server-side secrets.
Body
application/json